-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
32 lines (25 loc) · 1.27 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name := "skiffin"
version := "1.0"
organization := "org.theskiff"
scalaVersion := "2.9.1"
seq(com.github.siasia.WebPlugin.webSettings :_*)
resolvers += "Java.net Maven2 Repository" at "http://download.java.net/maven/2/"
libraryDependencies ++= {
val liftVersion = "2.4-RC1"
Seq(
"net.liftweb" %% "lift-webkit" % liftVersion % "compile->default",
"net.liftweb" %% "lift-mapper" % liftVersion % "compile->default",
"net.liftweb" %% "lift-record" % liftVersion % "compile->default" )
}
// Customize any further dependencies as desired
libraryDependencies ++= Seq(
//"org.eclipse.jetty" % "jetty-webapp" % "7.3.0.v20110203" % "jetty", // For Jetty 7
"org.mortbay.jetty" % "jetty" % "6.1.22" % "container,test", // For Jetty 6, add scope test to make jetty avl. for tests
"org.scala-tools.testing" % "specs_2.9.0" % "1.6.8" % "test", // For specs.org tests
"junit" % "junit" % "4.8" % "test->default", // For JUnit 4 testing
"javax.servlet" % "servlet-api" % "2.5" % "provided->default",
"net.databinder" %% "dispatch-http" % "0.8.7",
//"net.databinder" %% "dispatch-lift-json" % "0.8.7",
"com.h2database" % "h2" % "1.2.138", // In-process database, useful for development systems
"ch.qos.logback" % "logback-classic" % "0.9.26" % "compile->default" // Logging
)