-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathbuild.sbt
28 lines (22 loc) · 911 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
name := """capillary"""
organization := "io.keen"
version := "2.1.0"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.10.4"
scalacOptions ++= Seq("-feature")
libraryDependencies ++= Seq(
"org.apache.kafka" % "kafka_2.10" % "0.8.1.1"
exclude("javax.jms", "jms")
exclude("com.sun.jdmk", "jmxtools")
exclude("com.sun.jmx", "jmxri")
exclude("org.slf4j", "slf4j-simple"),
"nl.grons" %% "metrics-scala" % "3.0.4",
"com.codahale.metrics" % "metrics-json" % "3.0.1",
"com.codahale.metrics" % "metrics-jvm" % "3.0.1",
"org.apache.curator" % "curator-framework" % "2.6.0",
"org.apache.curator" % "curator-recipes" % "2.6.0",
"org.coursera" % "metrics-datadog" % "0.1.7",
specs2 % Test
)
resolvers += "scalaz-bintray" at "https://dl.bintray.com/scalaz/releases"
mappings in Universal += file("stats-to-datadog.py") -> "stats-to-datadog.py"