aboutsummaryrefslogtreecommitdiff
path: root/core/pom.xml
diff options
context:
space:
mode:
authorPeter MacKinnon <pmackinn@redhat.com>2014-07-01 00:28:38 -0700
committerReynold Xin <rxin@apache.org>2014-07-01 00:28:38 -0700
commit3319a3e3c604f187ff8176597b269af04ca5c1c5 (patch)
tree43e1d13dbc147eda79c2709d0ed502d160380303 /core/pom.xml
parent04fa1223ee69760f0d23b40e56f4b036aa301879 (diff)
downloadspark-3319a3e3c604f187ff8176597b269af04ca5c1c5.tar.gz
spark-3319a3e3c604f187ff8176597b269af04ca5c1c5.tar.bz2
spark-3319a3e3c604f187ff8176597b269af04ca5c1c5.zip
SPARK-2332 [build] add exclusion for old servlet-api on hadoop-client in core
Fix for class of test suite failures in jenkins Author: Peter MacKinnon <pmackinn@redhat.com> Closes #1271 from pdmack/master and squashes the following commits: cfe59fd [Peter MacKinnon] exclude servlet-api in hadoop-client for sbt 6f39fec [Peter MacKinnon] add exclusion for old servlet-api on hadoop-client in core
Diffstat (limited to 'core/pom.xml')
-rw-r--r--core/pom.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/pom.xml b/core/pom.xml
index 8c23842730..6abf8480d5 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -34,6 +34,12 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>net.java.dev.jets3t</groupId>