This is how I configure the subprojects at Play 2.3. However, it gives me sbt.ResolveException: unresolved dependency. What is wrong with my settings? This works in 2.2.
val model = Project(appName + "-model", file("models")).enablePlugins(play.PlayScala).settings(
version := appVersion,
libraryDependencies ++= modelDependencies
)
val main = Project(appName, file(".")).enablePlugins(play.PlayScala).enablePlugins(SbtWeb).settings(
version := appVersion,
libraryDependencies ++= appDependencies
).dependsOn(model % "test->test;compile->compile")