Skip to content

Instantly share code, notes, and snippets.

@basav
Created August 20, 2012 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save basav/3404699 to your computer and use it in GitHub Desktop.
Save basav/3404699 to your computer and use it in GitHub Desktop.
import sbt._
import Keys._
import PlayProject._
object ApplicationBuild extends Build {
val appName = "momo"
val appVersion = "1.0-SNAPSHOT"
val appDependencies = Seq(
// Add your project dependencies here,
"commons-io" % "commons-io" % "1.3.2"
)
val main = PlayProject(appName, appVersion, appDependencies, mainLang = JAVA).settings(
// Add your own project settings here
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment