-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
20 lines (17 loc) · 821 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
organization := "com.whyisitdoingthat"
name := "Scalatra Sandbox"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.12.4"
val json4sversion = "3.5.3"
val ScalatraVersion = "2.6.2"
val jettyVersion = "9.4.7.v20170914"
libraryDependencies ++= Seq(
"org.json4s" %% "json4s-jackson" % "3.5.3",
"org.scalatra" %% "scalatra" % ScalatraVersion,
"org.scalatra" %% "scalatra-scalate" % ScalatraVersion,
"org.scalatra" %% "scalatra-atmosphere" % ScalatraVersion,
"com.typesafe.akka" %% "akka-actor" % "2.3.15",
"org.eclipse.jetty" % "jetty-webapp" % "9.4.7.v20170914" % Provided,
"javax.servlet" % "javax.servlet-api" % "3.1.0" % Provided
)
enablePlugins(ScalatraPlugin)