-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.sbt
31 lines (24 loc) · 1011 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
30
31
enablePlugins(JettyPlugin)
organization := "Lift"
name := "seventhings"
version := "0.5"
scalaVersion := "2.12.2"
scalacOptions ++= Seq("-deprecation", "-unchecked")
resolvers ++= Seq("snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
"staging" at "https://oss.sonatype.org/content/repositories/staging",
"releases" at "https://oss.sonatype.org/content/repositories/releases"
)
libraryDependencies ++= {
val liftVersion = "3.1.1"
Seq(
"net.liftweb" %% "lift-webkit" % liftVersion,
"net.liftmodules" %% "lift-jquery-module_3.1" % "2.10",
"org.eclipse.jetty" % "jetty-webapp" % "8.1.7.v20120910" % "test",
"junit" % "junit" % "4.10" % "test",
"ch.qos.logback" % "logback-classic" % "1.2.3",
"org.specs2" %% "specs2-core" % "3.8.6" % "test",
"org.specs2" %% "specs2-matcher-extra" % "3.8.6" % "test",
"org.specs2" %% "specs2-junit" % "3.8.6" % "test",
"com.h2database" % "h2" % "1.3.167"
)
}