Skip to content

Instantly share code, notes, and snippets.

@leifwickland
Created June 7, 2011 18:38
Show Gist options
  • Save leifwickland/1012848 to your computer and use it in GitHub Desktop.
Save leifwickland/1012848 to your computer and use it in GitHub Desktop.
build.sbt which will pull in hadoop and hbase from Cloudera while excluding Thrift.
organization := "Example"
name := "example"
scalaVersion := "2.9.0-1"
resolvers += Resolver.url("ClouderaRepo", url("https://repository.cloudera.com/content/repositories/releases"))
libraryDependencies ++= Seq(
"org.apache.hadoop" % "hadoop-core" % "0.20.2-cdh3u0",
"org.apache.hbase" % "hbase" % "0.90.1-cdh3u0"
)
ivyXML :=
<dependencies>
<exclude module="thrift"/>
</dependencies>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment