Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 1st, 2012  |  syntax: None  |  size: 1.04 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. import sbt._
  2.  
  3. class LiftProject(info: ProjectInfo) extends DefaultWebProject(info) {
  4.   val liftVersion = property[Version]
  5.  
  6.   // uncomment the following if you want to use the snapshot repo
  7.   //  val scalatoolsSnapshot = ScalaToolsSnapshots
  8.  
  9.   // If you're using JRebel for Lift development, uncomment
  10.   // this line
  11.   // override def scanDirectories = Nil
  12.  
  13.   lazy val JavaNet = "Java.net Maven2 Repository" at "http://download.java.net/maven/2/"
  14.  
  15.   override def libraryDependencies = Set(
  16.     "net.liftweb" %% "lift-webkit" % liftVersion.value.toString % "compile",
  17.     "net.liftweb" %% "lift-mapper" % liftVersion.value.toString % "compile",
  18.     "org.mortbay.jetty" % "jetty" % "6.1.26" % "test",
  19.     "junit" % "junit" % "4.7" % "test",
  20.     "ch.qos.logback" % "logback-classic" % "0.9.26",
  21.     "org.scala-tools.testing" %% "specs" % "1.6.8" % "test",
  22.     "com.h2database" % "h2" % "1.2.147",
  23.     "postgresql" % "postgresql" % "8.4-701.jdbc4" % "runtime" ,
  24.     "net.liftweb" %% "lift-widgets" % liftVersion.value.toString % "compile"
  25.   ) ++ super.libraryDependencies
  26. }