-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
31 lines (22 loc) · 949 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
organization := "com.example"
name := "scalatra-sbt-prototype"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.9.1"
scalacOptions += "-deprecation"
scalacOptions += "-unchecked"
scalacOptions += "-Xcheckinit"
seq(webSettings :_*)
libraryDependencies ++= Seq(
"org.scalatra" %% "scalatra" % "2.0.2",
"org.scalatra" %% "scalatra-scalate" % "2.0.2",
"org.scalatra" %% "scalatra-auth" % "2.0.2",
"org.scalatra" %% "scalatra-specs2" % "2.0.2" % "test",
"ch.qos.logback" % "logback-classic" % "1.0.0" % "runtime",
"org.eclipse.jetty" % "jetty-webapp" % "7.4.5.v20110725" % "container",
"net.liftweb" %% "lift-json" % "2.4-M4",
"net.liftweb" %% "lift-mongodb-record" % "2.4-M4",
"org.slf4j" % "log4j-over-slf4j" % "1.6.1",
"javax.servlet" % "servlet-api" % "2.5" % "provided",
"org.apache.commons" % "commons-email" % "1.2"
)
resolvers += "Sonatype OSS Snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/"