-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbuild.sbt
29 lines (21 loc) · 844 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
val ScalatraVersion = "2.6.3"
organization := "com.example"
name := "Scala201"
version := "0.1"
scalaVersion := "2.12.6"
resolvers += Classpaths.typesafeReleases
libraryDependencies ++= Seq(
"org.scalatra" %% "scalatra" % ScalatraVersion,
"org.scalatra" %% "scalatra-scalatest" % ScalatraVersion % "test",
"ch.qos.logback" % "logback-classic" % "1.2.3" % "runtime",
"org.eclipse.jetty" % "jetty-webapp" % "9.2.19.v20160908" % "container",
"javax.servlet" % "javax.servlet-api" % "3.1.0" % "provided",
"org.scalaj" %% "scalaj-http" % "2.4.0",
"org.json4s" %% "json4s-jackson" % "3.5.2",
"org.json4s" %% "json4s-mongo" % "3.5.2",
"org.mongodb" %% "casbah" % "3.1.1",
"net.liftweb" %% "lift-json" % "3.3.0",
"org.scalatra" %% "scalatra-json" % ScalatraVersion
)
enablePlugins(SbtTwirl)
enablePlugins(ScalatraPlugin)