Created
December 3, 2012 14:59
-
-
Save jkdeveyra/4195495 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sbt._ | |
import Keys._ | |
import play.Project._ | |
object ApplicationBuild extends Build { | |
val appName = "SubProjectExample" | |
val appVersion = "1.0-SNAPSHOT" | |
val core = Project("core", file("core")) | |
val appDependencies = Seq( | |
// Add your project dependencies here, | |
jdbc, | |
anorm | |
) | |
val main = play.Project(appName, appVersion, appDependencies, path = file("web")) dependsOn core | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment