Created
August 20, 2012 14:26
-
-
Save basav/3404699 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 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