forked from twitter-archive/scala-zookeeper-client
-
Notifications
You must be signed in to change notification settings - Fork 16
/
build.sbt
29 lines (22 loc) · 801 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
29
name := "zookeeper-client"
version := "2.0.0_fs-b"
organization := "com.twitter"
scalaVersion := "2.10.1"
resolvers ++= Seq(
"repo1" at "http://repo1.maven.org/maven2/",
"jboss-repo" at "http://repository.jboss.org/maven2/",
"apache" at "http://people.apache.org/repo/m2-ibiblio-rsync-repository/"
)
libraryDependencies ++= Seq(
"org.slf4j" % "slf4j-api" % "1.6.4",
"org.slf4j" % "slf4j-log4j12" % "1.6.4",
"log4j" % "log4j" % "1.2.16",
"org.scala-tools.testing" % "specs_2.9.1" % "1.6.9" % "test"
)
libraryDependencies +=
"org.apache.zookeeper" % "zookeeper" % "3.3.4" excludeAll(
ExclusionRule(name = "jms"),
ExclusionRule(name = "jmxtools"),
ExclusionRule(name = "jmxri")
)
licenses += ("Apache 2", url("http://www.apache.org/licenses/LICENSE-2.0.txt</url>"))