This is how I set up subprojects in Play 2.3. However, this gives me sbt.ResolveException: unresolved dependency. What is wrong with my settings? This works in version 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")
source share