-
-
Save jorgeortiz85/998174 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 liftWebkit = "net.liftweb" %% "lift-webkit" % liftVersion % "compile" | |
val liftMapper = "net.liftweb" %% "lift-mapper" % liftVersion % "compile" | |
val jetty = "org.mortbay.jetty" % "jetty" % "6.1.22" % "test" | |
val junit = "junit" % "junit" % "4.5" % "test" | |
val logback = "ch.qos.logback" % "logback-classic" % "0.9.26" | |
val specs = "org.scala-tools.testing" %% "specs" % "1.6.6" % "test" | |
val h2 = "com.h2database" % "h2" % "1.2.138" | |
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 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment