Repository: spark Updated Branches: refs/heads/master d1d41ccee -> d58cb33ff
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 <[email protected]> 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 Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/d58cb33f Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/d58cb33f Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/d58cb33f Branch: refs/heads/master Commit: d58cb33ffa9e98a64cecea7b40ce7bfbed145079 Parents: d1d41cc Author: Patrick Wendell <[email protected]> Authored: Wed May 14 09:51:01 2014 -0700 Committer: Patrick Wendell <[email protected]> Committed: Wed May 14 09:51:01 2014 -0700 ---------------------------------------------------------------------- project/SparkBuild.scala | 6 +++--- sql/hive/pom.xml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/d58cb33f/project/SparkBuild.scala ---------------------------------------------------------------------- diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala index 57b3e22..8d56b40 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, http://git-wip-us.apache.org/repos/asf/spark/blob/d58cb33f/sql/hive/pom.xml ---------------------------------------------------------------------- diff --git a/sql/hive/pom.xml b/sql/hive/pom.xml index 8b32451..9254b70 100644 --- a/sql/hive/pom.xml +++ b/sql/hive/pom.xml @@ -44,12 +44,12 @@ <version>${project.version}</version> </dependency> <dependency> - <groupId>org.apache.hive</groupId> + <groupId>org.spark-project.hive</groupId> <artifactId>hive-metastore</artifactId> <version>${hive.version}</version> </dependency> <dependency> - <groupId>org.apache.hive</groupId> + <groupId>org.spark-project.hive</groupId> <artifactId>hive-exec</artifactId> <version>${hive.version}</version> <exclusions> @@ -64,7 +64,7 @@ <artifactId>jackson-mapper-asl</artifactId> </dependency> <dependency> - <groupId>org.apache.hive</groupId> + <groupId>org.spark-project.hive</groupId> <artifactId>hive-serde</artifactId> <version>${hive.version}</version> <exclusions>
