Created
May 29, 2011 22:12
-
-
Save lehrblogger/998169 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._ | |
class LiftProject(info: ProjectInfo) extends DefaultWebProject(info) { | |
val liftVersion = "2.3" | |
val rogue = "com.foursquare" %% "rogue" % "1.0.9" withSources() | |
// uncomment the following if you want to use the snapshot repo | |
// val scalatoolsSnapshot = ScalaToolsSnapshots | |
// If you're using JRebel for Lift development, uncomment | |
// this line | |
// override def scanDirectories = Nil | |
override def libraryDependencies = Set( | |
"net.liftweb" %% "lift-webkit" % liftVersion % "compile", | |
"net.liftweb" %% "lift-mapper" % liftVersion % "compile", | |
"org.mortbay.jetty" % "jetty" % "6.1.22" % "test", | |
"junit" % "junit" % "4.5" % "test", | |
"ch.qos.logback" % "logback-classic" % "0.9.26", | |
"org.scala-tools.testing" %% "specs" % "1.6.6" % "test", | |
"com.h2database" % "h2" % "1.2.138" | |
) ++ super.libraryDependencies | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment