aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Owen <sowen@cloudera.com>2015-03-08 14:09:40 +0000
committerSean Owen <sowen@cloudera.com>2015-03-08 14:09:40 +0000
commitf16b7b031feeb13ec9c17608bd99566f56431869 (patch)
tree544d15c47c9af0d9851d9fc8992d5f5c7f598498
parent52ed7da12e26c45734ce53a1be19ef148b2b953e (diff)
downloadspark-f16b7b031feeb13ec9c17608bd99566f56431869.tar.gz
spark-f16b7b031feeb13ec9c17608bd99566f56431869.tar.bz2
spark-f16b7b031feeb13ec9c17608bd99566f56431869.zip
SPARK-6205 [CORE] UISeleniumSuite fails for Hadoop 2.x test with NoClassDefFoundError
Add xml-apis to core test deps to work aroudn UISeleniumSuite classpath issue Author: Sean Owen <sowen@cloudera.com> Closes #4933 from srowen/SPARK-6205 and squashes the following commits: ddd4d32 [Sean Owen] Add xml-apis to core test deps to work aroudn UISeleniumSuite classpath issue
-rw-r--r--core/pom.xml6
-rw-r--r--pom.xml7
2 files changed, 13 insertions, 0 deletions
diff --git a/core/pom.xml b/core/pom.xml
index fab776d142..dc0d07d806 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -319,6 +319,12 @@
<artifactId>selenium-java</artifactId>
<scope>test</scope>
</dependency>
+ <!-- Added for selenium: -->
+ <dependency>
+ <groupId>xml-apis</groupId>
+ <artifactId>xml-apis</artifactId>
+ <scope>test</scope>
+ </dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
diff --git a/pom.xml b/pom.xml
index f99a83b999..51bef30f9c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -422,6 +422,13 @@
<version>2.42.2</version>
<scope>test</scope>
</dependency>
+ <!-- Added for selenium only, and should match its dependent version: -->
+ <dependency>
+ <groupId>xml-apis</groupId>
+ <artifactId>xml-apis</artifactId>
+ <version>1.4.01</version>
+ <scope>test</scope>
+ </dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>