-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathbuild.sbt
34 lines (24 loc) · 1.15 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
name := "metrics_storm"
// Remove -SNAPSHOT from the version before publishing a release. Don't forget to change the version to
// $(NEXT_VERSION)-SNAPSHOT afterwards!
version := "0.0.7-SNAPSHOT"
scalaVersion := "2.9.1"
scalacOptions += "-Yresolve-term-conflict:package"
unmanagedSourceDirectories in Compile <++= Seq(baseDirectory(_ / "src" )).join
unmanagedSourceDirectories in Test <++= Seq(baseDirectory(_ / "test" )).join
libraryDependencies ++= Seq(
// slf4j >= 1.6 is needed so jetty logging won't throw an exception
"org.slf4j" % "slf4j-api" % "1.6.4",
"org.slf4j" % "slf4j-log4j12" % "1.6.4",
"com.yammer.metrics" % "metrics-core" % "2.1.2",
"com.yammer.metrics" % "metrics-servlet" % "2.1.2",
"javax.servlet" % "servlet-api" % "2.5"
)
// Testing deps
libraryDependencies ++= Seq("org.scalatest" %% "scalatest" % "1.9.1" % "test",
"org.mockito" % "mockito-all" % "1.9.0" % "test")
resolvers ++= Seq("clojars" at "http://clojars.org/repo/",
"clojure-releases" at "http://build.clojure.org/releases")
libraryDependencies += "storm" % "storm" % "0.8.2"
// Testing deps
libraryDependencies ++= Seq()