Skip to content

Instantly share code, notes, and snippets.

@jorgeortiz85
Forked from lehrblogger/gist:998169
Created May 29, 2011 22:16
Show Gist options
  • Save jorgeortiz85/998174 to your computer and use it in GitHub Desktop.
Save jorgeortiz85/998174 to your computer and use it in GitHub Desktop.
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