-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
34 lines (26 loc) · 1.1 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
val ScalatraVersion = "2.6.2"
organization := "com.github.at1as"
name := "Remind Me"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.12.4"
resolvers += Classpaths.typesafeReleases
//resolvers +=
// "Tatami Releases" at "https://raw.githubusercontent.com/cchantep/tatami/master/releases/"
libraryDependencies ++= Seq(
"org.scalatra" %% "scalatra" % ScalatraVersion,
"org.scalatra" %% "scalatra-scalatest" % ScalatraVersion % "test",
"org.scalatra" %% "scalatra-json" % ScalatraVersion,
"org.json4s" %% "json4s-jackson" % "3.5.2",
"ch.qos.logback" % "logback-classic" % "1.1.5" % "runtime",
"org.eclipse.jetty" % "jetty-webapp" % "9.2.15.v20160210" % "container",
"javax.servlet" % "javax.servlet-api" % "3.1.0" % "provided",
"com.github.tototoshi" %% "scala-csv" % "1.3.5",
"com.twilio.sdk" % "twilio" % "7.15.5",
"com.typesafe" % "config" % "1.3.2",
"com.typesafe.akka" %% "akka-actor" % "2.5.9",
"com.typesafe.akka" %% "akka-testkit" % "2.5.9" % Test
//"foorgol" %% "scala" % "1.0.5"
)
enablePlugins(SbtTwirl)
enablePlugins(ScalatraPlugin)
mainClass in (Compile, run) := Some("ScalatraBootstrap")