Skip to content

Instantly share code, notes, and snippets.

@jkdeveyra
Created December 3, 2012 14:59
Show Gist options
  • Save jkdeveyra/4195495 to your computer and use it in GitHub Desktop.
Save jkdeveyra/4195495 to your computer and use it in GitHub Desktop.
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