Skip to content

Instantly share code, notes, and snippets.

@fanatoly
Created June 5, 2014 14:19
Show Gist options
  • Save fanatoly/04664e14f5da42f9b478 to your computer and use it in GitHub Desktop.
Save fanatoly/04664e14f5da42f9b478 to your computer and use it in GitHub Desktop.
multi-module-play
import sbt._
import Keys._
import play.Project._
object ApplicationBuild extends Build {
val appName = "helloworld"
val appVersion = "1.0"
val appDependencies = Seq(
// Add your project dependencies here,
)
val common = Project("common", file("common"))
val main = play.Project(appName, appVersion, appDependencies, path=file("main")).settings(
// Add your own project settings here
).dependsOn(common)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment