forked from Netflix/edda
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
42 lines (36 loc) · 2.24 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
35
36
37
38
39
40
41
val aws = "1.11.60"
val jackson = "1.9.2"
val jersey = "1.11"
val log4j = "1.2.12"
val slf4j = "1.6.1"
lazy val edda = project.in(file("."))
.configure(BuildSettings.profile)
.enablePlugins(JettyPlugin)
.settings(libraryDependencies ++= Seq(
"com.amazonaws" % "aws-java-sdk" % aws,
"com.netflix.archaius" % "archaius-core" % "0.5.6",
"commons-beanutils" % "commons-beanutils" % "1.8.2",
"commons-collections" % "commons-collections" % "3.2.1",
"commons-io" % "commons-io" % "2.4",
"com.googlecode.java-diff-utils" % "diffutils" % "1.2.1",
"org.elasticsearch" % "elasticsearch" % "0.90.3",
"org.apache.httpcomponents" % "httpclient" % "4.1",
"org.codehaus.jackson" % "jackson-core-asl" % jackson,
"org.codehaus.jackson" % "jackson-mapper-asl" % jackson,
"com.sun.jersey" % "jersey-core" % jersey,
"com.sun.jersey" % "jersey-server" % jersey,
"com.sun.jersey" % "jersey-servlet" % jersey,
"org.joda" % "joda-convert" % "1.2",
"joda-time" % "joda-time" % "2.0",
"javax.ws.rs" % "jsr311-api" % "1.1.1",
"org.mongodb" % "mongo-java-driver" % "3.2.2",
"org.scala-lang" % "scala-actors" % scalaVersion.value,
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.4",
"com.netflix.servo" % "servo-core" % "0.4.10",
"org.slf4j" % "slf4j-api" % slf4j,
"com.spatial4j" % "spatial4j" % "0.3",
"javax.servlet" % "servlet-api" % "2.5" % "provided",
"log4j" % "log4j" % log4j,
"org.slf4j" % "slf4j-log4j12" % slf4j,
"org.scalatest" %% "scalatest" % "2.2.6" % "test"
))