Repository: spark
Updated Branches:
  refs/heads/branch-1.3 728c1f927 -> 1cde04f21


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 <so...@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


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/1cde04f2
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/1cde04f2
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/1cde04f2

Branch: refs/heads/branch-1.3
Commit: 1cde04f21c5b7fbf4e5d63ac8e5f0fe13d092bc0
Parents: 728c1f9
Author: Sean Owen <so...@cloudera.com>
Authored: Sun Mar 8 14:09:40 2015 +0000
Committer: Sean Owen <so...@cloudera.com>
Committed: Mon Apr 6 10:38:31 2015 +0100

----------------------------------------------------------------------
 core/pom.xml | 6 ++++++
 pom.xml      | 7 +++++++
 2 files changed, 13 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/1cde04f2/core/pom.xml
----------------------------------------------------------------------
diff --git a/core/pom.xml b/core/pom.xml
index d95847d..5971d05 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>

http://git-wip-us.apache.org/repos/asf/spark/blob/1cde04f2/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 279d25c..a599ad4 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>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to