forked from HolmesProcessing/Holmes-Totem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
33 lines (17 loc) · 1.03 KB
/
build.sbt
File metadata and controls
33 lines (17 loc) · 1.03 KB
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
name := "totem"
version := "0.5.0"
scalaVersion := "2.11.4" //was 2.10.3
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
libraryDependencies += "com.typesafe.akka" %% "akka-actor" % "2.3.7"
libraryDependencies += "com.rabbitmq" % "amqp-client" % "3.4.2"
libraryDependencies += "org.json4s" %% "json4s-jackson" % "3.2.11"
libraryDependencies += "joda-time" % "joda-time" % "2.6"
libraryDependencies += "org.joda" % "joda-convert" % "1.7"
libraryDependencies += "net.databinder.dispatch" %% "dispatch-core" % "0.11.3"
libraryDependencies += "commons-io" % "commons-io" % "2.4"
libraryDependencies += "nl.grons" %% "metrics-scala" % "3.3.0_a2.3"
libraryDependencies += "io.dropwizard.metrics" % "metrics-json" % "3.1.0"
libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "3.1.0"
libraryDependencies += "com.typesafe" % "config" % "1.2.1"
libraryDependencies += "com.typesafe.akka" %% "akka-testkit" % "2.3.7"
libraryDependencies += "org.scalatest" % "scalatest_2.11" % "2.2.1" % "test"