-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
33 lines (22 loc) · 939 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
32
33
import com.typesafe.startscript.StartScriptPlugin
organization := "fr.arnk"
name := "sosmessage-api"
version := "2.6-SNAPSHOT"
scalaVersion := "2.10.0"
seq(StartScriptPlugin.startScriptForClassesSettings: _*)
seq(com.github.retronym.SbtOneJar.oneJarSettings: _*)
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.1.0",
"net.databinder" %% "unfiltered-filter" % "0.6.7",
"net.databinder" %% "unfiltered-netty-server" % "0.6.7",
"net.databinder" %% "unfiltered-json" % "0.6.7",
"org.mongodb" %% "casbah" % "2.5.0",
"org.streum" %% "configrity-core" % "1.0.0",
"javax.mail" % "mail" % "1.4.4",
"ch.qos.logback" % "logback-classic" % "0.9.28",
"net.databinder" %% "unfiltered-spec" % "0.6.7" % "test"
)
scalacOptions ++= Seq("-unchecked", "-deprecation")
scalariformSettings
parallelExecution in Test := false