aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorMatei Zaharia <matei.zaharia@gmail.com>2013-08-09 21:53:45 -0700
committerMatei Zaharia <matei.zaharia@gmail.com>2013-08-09 21:53:45 -0700
commitdce5e47435b143b8ce5a8b431ac5591a4b112ee8 (patch)
tree849ee31688b031a3e87f33f46911fbe2207466df /project
parentcd247ba5bb54afa332519826028ab68a4f73849e (diff)
parent27f674f82bb3c6dd4a478ef97110302ae54f05a1 (diff)
downloadspark-dce5e47435b143b8ce5a8b431ac5591a4b112ee8.tar.gz
spark-dce5e47435b143b8ce5a8b431ac5591a4b112ee8.tar.bz2
spark-dce5e47435b143b8ce5a8b431ac5591a4b112ee8.zip
Merge pull request #800 from dlyubimov/HBASE_VERSION
Pull HBASE_VERSION in the head of sbt build
Diffstat (limited to 'project')
-rw-r--r--project/SparkBuild.scala5
1 files changed, 4 insertions, 1 deletions
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index 8af95ed262..f860925650 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -40,6 +40,9 @@ object SparkBuild extends Build {
//val HADOOP_MAJOR_VERSION = "2"
//val HADOOP_YARN = true
+ // HBase version; set as appropriate.
+ val HBASE_VERSION = "0.94.6"
+
lazy val root = Project("root", file("."), settings = rootSettings) aggregate(core, repl, examples, bagel, streaming, mllib, tools)
lazy val core = Project("core", file("core"), settings = coreSettings)
@@ -227,7 +230,7 @@ object SparkBuild extends Build {
libraryDependencies ++= Seq(
"com.twitter" % "algebird-core_2.9.2" % "0.1.11",
- "org.apache.hbase" % "hbase" % "0.94.6" excludeAll(excludeNetty, excludeAsm),
+ "org.apache.hbase" % "hbase" % HBASE_VERSION excludeAll(excludeNetty, excludeAsm),
"org.apache.cassandra" % "cassandra-all" % "1.2.5"
exclude("com.google.guava", "guava")