Skip to content

Commit

Permalink
project files missing
Browse files Browse the repository at this point in the history
  • Loading branch information
joestein committed Oct 16, 2011
1 parent 2d6fbe4 commit 6347c97
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
9 changes: 9 additions & 0 deletions project/build.properties
@@ -0,0 +1,9 @@
#Project properties
project.organization=Lift
project.name=Lift SBT Template
sbt.version=0.7.5
project.version=0.1
def.scala.version=2.7.7
build.scala.versions=2.9.0-1
project.initialize=false
lift.version=2.4-M4
24 changes: 24 additions & 0 deletions project/build/LiftProject.scala
@@ -0,0 +1,24 @@
import sbt._

class LiftProject(info: ProjectInfo) extends DefaultWebProject(info) {
val liftVersion = property[Version]

// 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

lazy val JavaNet = "Java.net Maven2 Repository" at "http://download.java.net/maven/2/"

override def libraryDependencies = Set(
"net.liftweb" %% "lift-webkit" % liftVersion.value.toString % "compile",
"net.liftweb" %% "lift-mapper" % liftVersion.value.toString % "compile",
"org.mortbay.jetty" % "jetty" % "6.1.26" % "test",
"junit" % "junit" % "4.7" % "test",
"ch.qos.logback" % "logback-classic" % "0.9.26",
"org.scala-tools.testing" %% "specs" % "1.6.8" % "test",
"com.h2database" % "h2" % "1.2.147"
) ++ super.libraryDependencies
}

0 comments on commit 6347c97

Please sign in to comment.