-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
executable file
·36 lines (25 loc) · 1.04 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
33
34
name := "Cookbook Squeryl"
version := "1.0.0"
organization := "cookbook.liftweb.net"
scalaVersion := "2.9.2"
resolvers ++= Seq(
"snapshots" at "http://oss.sonatype.org/content/repositories/snapshots",
"releases" at "http://oss.sonatype.org/content/repositories/releases"
)
seq(webSettings :_*)
parallelExecution in Test := false
scalacOptions ++= Seq("-deprecation", "-unchecked")
libraryDependencies ++= {
val liftVersion = "2.5.1"
Seq(
"net.liftweb" %% "lift-webkit" % liftVersion,
"postgresql" % "postgresql" % "9.1-901.jdbc4",
"net.liftweb" %% "lift-squeryl-record" % liftVersion,
"net.liftmodules" %% "lift-jquery-module_2.5" % "2.3",
"org.eclipse.jetty" % "jetty-webapp" % "8.1.7.v20120910" % "container,test",
"org.eclipse.jetty.orbit" % "javax.servlet" % "3.0.0.v201112011016" % "container,test" artifacts Artifact("javax.servlet", "jar", "jar"),
"ch.qos.logback" % "logback-classic" % "1.0.6",
"org.specs2" %% "specs2" % "1.12.3" % "test"
)
}
libraryDependencies += "com.h2database" % "h2" % "1.3.170"