aboutsummaryrefslogtreecommitdiff
path: root/project/SparkBuild.scala
diff options
context:
space:
mode:
authorPatrick Wendell <pwendell@gmail.com>2014-05-14 09:51:01 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-05-14 09:51:01 -0700
commitd58cb33ffa9e98a64cecea7b40ce7bfbed145079 (patch)
tree877f314656ca9239d699f8ba7d48676d8ae311ae /project/SparkBuild.scala
parentd1d41ccee49a5c093cb61c791c01f64f2076b83e (diff)
downloadspark-d58cb33ffa9e98a64cecea7b40ce7bfbed145079.tar.gz
spark-d58cb33ffa9e98a64cecea7b40ce7bfbed145079.tar.bz2
spark-d58cb33ffa9e98a64cecea7b40ce7bfbed145079.zip
SPARK-1828: Created forked version of hive-exec that doesn't bundle other dependencies
See https://issues.apache.org/jira/browse/SPARK-1828 for more information. This is being submitted to Jenkin's for testing. The dependency won't fully propagate in Maven central for a few more hours. Author: Patrick Wendell <pwendell@gmail.com> Closes #767 from pwendell/hive-shaded and squashes the following commits: ea10ac5 [Patrick Wendell] SPARK-1828: Created forked version of hive-exec that doesn't bundle other dependencies
Diffstat (limited to 'project/SparkBuild.scala')
-rw-r--r--project/SparkBuild.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index 57b3e22f81..8d56b40431 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -489,9 +489,9 @@ object SparkBuild extends Build {
name := "spark-hive",
javaOptions += "-XX:MaxPermSize=1g",
libraryDependencies ++= Seq(
- "org.apache.hive" % "hive-metastore" % hiveVersion,
- "org.apache.hive" % "hive-exec" % hiveVersion,
- "org.apache.hive" % "hive-serde" % hiveVersion
+ "org.spark-project.hive" % "hive-metastore" % hiveVersion,
+ "org.spark-project.hive" % "hive-exec" % hiveVersion,
+ "org.spark-project.hive" % "hive-serde" % hiveVersion
),
// Multiple queries rely on the TestHive singleton. See comments there for more details.
parallelExecution in Test := false,