Skip to content

Instantly share code, notes, and snippets.

@ahoy-jon
Created June 26, 2012 15:41
Show Gist options
  • Save ahoy-jon/2996520 to your computer and use it in GitHub Desktop.
Save ahoy-jon/2996520 to your computer and use it in GitHub Desktop.
import sbt._
import Keys._
import PlayProject._
object ApplicationBuild extends Build {
val appName = "test"
val appVersion = "1.0-SNAPSHOT"
val appDependencies = Seq(
// Add your project dependencies here,
)
lazy val main = PlayProject(appName, appVersion, appDependencies, mainLang = SCALA).settings(
// Add your own project settings here
).dependsOn(model)
lazy val model = RootProject(file("../model"))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment