Skip to content

Instantly share code, notes, and snippets.

@leifwickland
Created June 5, 2011 18:26
Show Gist options
  • Save leifwickland/1009250 to your computer and use it in GitHub Desktop.
Save leifwickland/1009250 to your computer and use it in GitHub Desktop.
SBT Project.scala to slurp in CHD3 Hadoop Core
import sbt._
class Project(info: ProjectInfo) extends DefaultProject(info) {
val clouderaRepo = "cloudera release" at "https://repository.cloudera.com/content/repositories/releases"
val cdhVer = "0.20.2-cdh3u0"
val hadoopCore = "org.apache.hadoop" % "hadoop-core" % cdhVer % "provided"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment