Skip to content
Snippets Groups Projects
Commit 6a2c5c61 authored by witgo's avatar witgo Committed by Tathagata Das
Browse files

[SPARK-1875]NoClassDefFoundError: StringUtils when building with hadoop 1.x and hive

Author: witgo <witgo@qq.com>

Closes #824 from witgo/SPARK-1875_commons-lang-2.6 and squashes the following commits:

ef7231d [witgo] review commit
ead3c3b [witgo] SPARK-1875:NoClassDefFoundError: StringUtils when building against Hadoop 1
parent 5af99d76
No related branches found
No related tags found
No related merge requests found
...@@ -318,7 +318,6 @@ object SparkBuild extends Build { ...@@ -318,7 +318,6 @@ object SparkBuild extends Build {
val excludeFastutil = ExclusionRule(organization = "it.unimi.dsi") val excludeFastutil = ExclusionRule(organization = "it.unimi.dsi")
val excludeJruby = ExclusionRule(organization = "org.jruby") val excludeJruby = ExclusionRule(organization = "org.jruby")
val excludeThrift = ExclusionRule(organization = "org.apache.thrift") val excludeThrift = ExclusionRule(organization = "org.apache.thrift")
val excludeCommonsLang = ExclusionRule(organization = "commons-lang")
val excludeServletApi = ExclusionRule(organization = "javax.servlet", artifact = "servlet-api") val excludeServletApi = ExclusionRule(organization = "javax.servlet", artifact = "servlet-api")
def sparkPreviousArtifact(id: String, organization: String = "org.apache.spark", def sparkPreviousArtifact(id: String, organization: String = "org.apache.spark",
...@@ -493,7 +492,7 @@ object SparkBuild extends Build { ...@@ -493,7 +492,7 @@ object SparkBuild extends Build {
javaOptions += "-XX:MaxPermSize=1g", javaOptions += "-XX:MaxPermSize=1g",
libraryDependencies ++= Seq( libraryDependencies ++= Seq(
"org.spark-project.hive" % "hive-metastore" % hiveVersion, "org.spark-project.hive" % "hive-metastore" % hiveVersion,
"org.spark-project.hive" % "hive-exec" % hiveVersion excludeAll(excludeCommonsLang, excludeCommonsLogging), "org.spark-project.hive" % "hive-exec" % hiveVersion excludeAll(excludeCommonsLogging),
"org.spark-project.hive" % "hive-serde" % hiveVersion "org.spark-project.hive" % "hive-serde" % hiveVersion
), ),
// Multiple queries rely on the TestHive singleton. See comments there for more details. // Multiple queries rely on the TestHive singleton. See comments there for more details.
......
...@@ -57,10 +57,6 @@ ...@@ -57,10 +57,6 @@
<groupId>commons-logging</groupId> <groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId> <artifactId>commons-logging</artifactId>
</exclusion> </exclusion>
<exclusion>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<dependency> <dependency>
...@@ -80,10 +76,6 @@ ...@@ -80,10 +76,6 @@
<groupId>commons-logging</groupId> <groupId>commons-logging</groupId>
<artifactId>commons-logging-api</artifactId> <artifactId>commons-logging-api</artifactId>
</exclusion> </exclusion>
<exclusion>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<!-- hive-serde already depends on avro, but this brings in customized config of avro deps from parent --> <!-- hive-serde already depends on avro, but this brings in customized config of avro deps from parent -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment