Skip to content
This repository has been archived by the owner on Aug 12, 2019. It is now read-only.

Commit

Permalink
Updated to Lift 2.1-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
dpp committed Jul 18, 2010
1 parent 77307a4 commit 77e5043
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion project/build.properties
Expand Up @@ -5,5 +5,5 @@ project.name=Lift SBT Tempalte
sbt.version=0.7.4
project.version=0.1
def.scala.version=2.7.7
build.scala.versions=2.7.7
build.scala.versions=2.8.0
project.initialize=false
15 changes: 11 additions & 4 deletions project/build/LiftProject.scala
@@ -1,14 +1,21 @@
import sbt._

class LiftProject(info: ProjectInfo) extends DefaultWebProject(info) {
val liftVersion = "2.0"
val liftVersion = "2.1-SNAPSHOT"

val scalatoolsSnapshot =
"Scala Tools Snapshot" at "http://scala-tools.org/repo-snapshots/"

// 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->default",
"net.liftweb" % "lift-mapper" % liftVersion % "compile->default",
"net.liftweb" %% "lift-webkit" % liftVersion % "compile->default",
"net.liftweb" %% "lift-mapper" % liftVersion % "compile->default",
"org.mortbay.jetty" % "jetty" % "6.1.22" % "test->default",
"junit" % "junit" % "4.5" % "test->default",
"org.scala-tools.testing" % "specs" % "1.6.2.1" % "test->default",
"org.scala-tools.testing" %% "specs" % "1.6.5" % "test->default",
"com.h2database" % "h2" % "1.2.138"
) ++ super.libraryDependencies
}

0 comments on commit 77e5043

Please sign in to comment.