Created
March 7, 2013 16:50
-
-
Save liuweiathust/5109580 to your computer and use it in GitHub Desktop.
lift project build.sbt
This file contains 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
name := "lift-demo" | |
scalaVersion := "2.9.2" | |
seq(webSettings :_*) | |
// enable jrebel | |
scanDirectories in Compile := Nil | |
resolvers += "Java.net Maven2 Repository" at "http://download.java.net/maven/2/" | |
libraryDependencies ++= { | |
val liftVersion = "2.4" | |
Seq( | |
"net.liftweb" % "lift-webkit_2.9.1" % liftVersion % "compile->default", | |
"net.liftweb" % "lift-mapper_2.9.1" % liftVersion % "compile->default", | |
"net.liftweb" % "lift-wizard_2.9.1" % liftVersion % "compile->default" | |
) | |
} | |
// Customize any further dependencies as desired | |
libraryDependencies ++= Seq( | |
"org.eclipse.jetty" % "jetty-webapp" % "7.3.0.v20110203" % "container,test->default", | |
"org.scala-tools.testing" % "specs_2.9.0" % "1.6.8" % "test", // For specs.org tests | |
"junit" % "junit" % "4.8" % "test->default", // For JUnit 4 testing | |
"javax.servlet" % "servlet-api" % "2.5" % "provided->default", | |
"com.h2database" % "h2" % "1.2.138", // In-process database, useful for development systems | |
"ch.qos.logback" % "logback-classic" % "1.0.0" % "compile->default", | |
"org.slf4j" % "jcl-over-slf4j" % "1.6.4" // only used for debugging. | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment