-
Notifications
You must be signed in to change notification settings - Fork 12
/
build.sbt
31 lines (20 loc) · 880 Bytes
/
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
name := "starter"
version := "0.3"
organization := "com.fmpwizard"
scalaVersion := "2.10.0"
seq(webSettings :_*)
resolvers ++= Seq("snapshots" at "http://oss.sonatype.org/content/repositories/snapshots",
"releases" at "http://oss.sonatype.org/content/repositories/releases")
libraryDependencies ++= {
val liftVersion = "2.5-RC2"
Seq(
"net.liftweb" %% "lift-webkit" % liftVersion % "compile",
"net.liftmodules" %% "fobo" % (liftVersion+"-0.9.3-SNAPSHOT"),
"org.specs2" %% "specs2" % "1.14" % "test",
"org.eclipse.jetty" % "jetty-webapp" % "8.0.1.v20110908" % "container",
"com.h2database" % "h2" % "1.2.138",
"ch.qos.logback" % "logback-classic" % "0.9.26"
)
}
// append -deprecation to the options passed to the Scala compiler
scalacOptions += "-deprecation"