forked from kjozsa/lift_25_samples
-
Notifications
You must be signed in to change notification settings - Fork 14
/
build.sbt
38 lines (26 loc) · 1.4 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
35
36
37
import com.typesafe.sbt.SbtStartScript
name := "Lift 2.5 samples"
version := "0.0.1"
organization := "net.liftweb"
scalaVersion := "2.10.2"
resolvers ++= Seq("snapshots" at "http://oss.sonatype.org/content/repositories/snapshots",
"releases" at "http://oss.sonatype.org/content/repositories/releases"
)
seq(com.github.siasia.WebPlugin.webSettings :_*)
seq(SbtStartScript.startScriptForClassesSettings: _*)
// net.virtualvoid.sbt.graph.Plugin.graphSettings // for sbt dependency-graph plugin
scalacOptions ++= Seq("-deprecation", "-unchecked", "-feature")
libraryDependencies ++= {
val liftVersion = "2.5"
Seq(
"net.liftweb" %% "lift-webkit" % liftVersion % "compile",
"net.liftweb" %% "lift-wizard" % liftVersion % "compile",
"net.liftweb" %% "lift-mapper" % liftVersion % "compile",
"net.liftmodules" %% "textile_2.5" % "1.3" % "compile",
"net.liftmodules" %% "widgets_2.5" % "1.3" % "compile",
"org.eclipse.jetty" % "jetty-webapp" % "8.1.10.v20130312" % "compile,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.11",
"com.h2database" % "h2" % "1.3.171"
)
}