Repository: spark
Updated Branches:
  refs/heads/master 52ed7da12 -> f16b7b031


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/f16b7b03
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/f16b7b03
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/f16b7b03

Branch: refs/heads/master
Commit: f16b7b031feeb13ec9c17608bd99566f56431869
Parents: 52ed7da
Author: Sean Owen <so...@cloudera.com>
Authored: Sun Mar 8 14:09:40 2015 +0000
Committer: Sean Owen <so...@cloudera.com>
Committed: Sun Mar 8 14:09:40 2015 +0000

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


http://git-wip-us.apache.org/repos/asf/spark/blob/f16b7b03/core/pom.xml
----------------------------------------------------------------------
diff --git a/core/pom.xml b/core/pom.xml
index fab776d..dc0d07d 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/f16b7b03/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index f99a83b..51bef30 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