Skip to content

Instantly share code, notes, and snippets.

@RSchulz
Created August 10, 2012 17:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RSchulz/3315936 to your computer and use it in GitHub Desktop.
Save RSchulz/3315936 to your computer and use it in GitHub Desktop.
name := "scala-zookeeper-client"
version := "3.0.2-SNAPSHOT"
crossScalaVersions := Seq("2.9.0-1", "2.9.1")
resolvers += "Box Dev Repo" at "http://maven.dev.box.net:8081/nexus/content/groups/public"
resolvers += "Twitter Repository" at "https://svn.twitter.biz/maven/"
libraryDependencies ++= Seq(
"org.scala-tools.testing" % "specs_2.9.0-1" % "1.6.8" % "test",
"com.twitter" % "ostrich" % "4.10.0",
"org.apache.zookeeper" % "zookeeper" % "3.3.3"
)
ivyXML :=
<dependencies>
<exclude module="jms"/>
<exclude module="jmxtools"/>
<exclude module="jmxri"/>
</dependencies>
pomExtra :=
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment