Repository: spark Updated Branches: refs/heads/branch-1.0 fc6b65227 -> 34f6fa921
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 (cherry picked from commit d58cb33ffa9e98a64cecea7b40ce7bfbed145079) Signed-off-by: Patrick Wendell <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/34f6fa92 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/34f6fa92 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/34f6fa92 Branch: refs/heads/branch-1.0 Commit: 34f6fa92155ba70d7b17315664618a007f9325ab Parents: fc6b652 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:11 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/34f6fa92/project/SparkBuild.scala ---------------------------------------------------------------------- diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala index cca3fba..2d10d89 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/34f6fa92/sql/hive/pom.xml ---------------------------------------------------------------------- diff --git a/sql/hive/pom.xml b/sql/hive/pom.xml index 4fd3cb0..0c55657 100644 --- a/sql/hive/pom.xml +++ b/sql/hive/pom.xml @@ -43,12 +43,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> @@ -63,7 +63,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>
