aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Owen <sowen@cloudera.com>2015-03-08 14:09:40 +0000
committerSean Owen <sowen@cloudera.com>2015-04-06 10:38:31 +0100
commit1cde04f21c5b7fbf4e5d63ac8e5f0fe13d092bc0 (patch)
tree85d3461a1e16e745b72dedc6651b1ad39bfdd8f9
parent728c1f927822eb6b12f04dc47109feb6fbe02ec2 (diff)
downloadspark-1cde04f21c5b7fbf4e5d63ac8e5f0fe13d092bc0.tar.gz
spark-1cde04f21c5b7fbf4e5d63ac8e5f0fe13d092bc0.tar.bz2
spark-1cde04f21c5b7fbf4e5d63ac8e5f0fe13d092bc0.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 d95847d5d4..5971d05c0d 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 279d25c518..a599ad470d 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>