-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
28 lines (14 loc) · 961 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
name := "rflows"
scalaVersion := "2.11.6"
exportJars := true
resolvers += Resolver.sonatypeRepo("releases")
javaOptions += "-Xmx32M"
organization := "com.github.dk14"
libraryDependencies += "io.spray" %% "spray-routing-shapeless2" % "1.3.2"
libraryDependencies += "io.spray" %% "spray-json" % "1.3.2"
libraryDependencies += "com.typesafe.akka" %% "akka-actor" % "2.3.6"
libraryDependencies += "com.typesafe.akka" %% "akka-slf4j" % "2.3.6"
libraryDependencies += "nl.grons" %% "metrics-scala" % "3.5.1_a2.3"
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.0-M7" % "test"
libraryDependencies += "com.lihaoyi" %% "utest" % "0.3.1"