aboutsummaryrefslogtreecommitdiff
path: root/core/pom.xml
diff options
context:
space:
mode:
authorMarcelo Vanzin <vanzin@cloudera.com>2015-01-29 13:00:45 -0800
committerPatrick Wendell <patrick@databricks.com>2015-01-29 13:00:45 -0800
commitf9e569452e2f0ae69037644170d8aa79ac6b4ccf (patch)
tree0a4e73085b47884a95c8fd04dfaceeb860fe4d1f /core/pom.xml
parenta3dc6184862345c459d1fba475b1c9210038a913 (diff)
downloadspark-f9e569452e2f0ae69037644170d8aa79ac6b4ccf.tar.gz
spark-f9e569452e2f0ae69037644170d8aa79ac6b4ccf.tar.bz2
spark-f9e569452e2f0ae69037644170d8aa79ac6b4ccf.zip
[SPARK-5466] Add explicit guava dependencies where needed.
One side-effect of shading guava is that it disappears as a transitive dependency. For Hadoop 2.x, this was masked by the fact that Hadoop itself depends on guava. But certain versions of Hadoop 1.x also shade guava, leaving either no guava or some random version pulled by another dependency on the classpath. So be explicit about the dependency in modules that use guava directly, which is the right thing to do anyway. Author: Marcelo Vanzin <vanzin@cloudera.com> Closes #4272 from vanzin/SPARK-5466 and squashes the following commits: e3f30e5 [Marcelo Vanzin] Dependency for catalyst is not needed. d3b2c84 [Marcelo Vanzin] [SPARK-5466] Add explicit guava dependencies where needed.
Diffstat (limited to 'core/pom.xml')
-rw-r--r--core/pom.xml4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/pom.xml b/core/pom.xml
index 3c51b2d6b5..31e919a1c8 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -35,6 +35,10 @@
<url>http://spark.apache.org/</url>
<dependencies>
<dependency>
+ <groupId>com.google.guava</groupId>
+ <artifactId>guava</artifactId>
+ </dependency>
+ <dependency>
<groupId>com.twitter</groupId>
<artifactId>chill_${scala.binary.version}</artifactId>
<exclusions>