You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2012/09/10 09:02:44 UTC

svn commit: r1382663 - in /webservices/commons/trunk/modules/axiom/modules: axiom-dom-testsuite/src/test/java/org/apache/axiom/ts/dom/XercesTest.java axiom-parent/pom.xml

Author: veithen
Date: Mon Sep 10 07:02:43 2012
New Revision: 1382663

URL: http://svn.apache.org/viewvc?rev=1382663&view=rev
Log:
Upgraded to a more recent version of Xerces to fix an issue with one of the test cases in the DOM test suite.

Modified:
    webservices/commons/trunk/modules/axiom/modules/axiom-dom-testsuite/src/test/java/org/apache/axiom/ts/dom/XercesTest.java
    webservices/commons/trunk/modules/axiom/modules/axiom-parent/pom.xml

Modified: webservices/commons/trunk/modules/axiom/modules/axiom-dom-testsuite/src/test/java/org/apache/axiom/ts/dom/XercesTest.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-dom-testsuite/src/test/java/org/apache/axiom/ts/dom/XercesTest.java?rev=1382663&r1=1382662&r2=1382663&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-dom-testsuite/src/test/java/org/apache/axiom/ts/dom/XercesTest.java (original)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-dom-testsuite/src/test/java/org/apache/axiom/ts/dom/XercesTest.java Mon Sep 10 07:02:43 2012
@@ -24,7 +24,6 @@ import junit.framework.TestCase;
 import junit.framework.TestSuite;
 
 import org.apache.axiom.ts.dom.document.TestLookupNamespaceURIWithEmptyDocument;
-import org.apache.axiom.ts.dom.element.TestLookupNamespaceURIExplicit;
 import org.apache.xerces.jaxp.DocumentBuilderFactoryImpl;
 
 public class XercesTest extends TestCase {
@@ -36,9 +35,6 @@ public class XercesTest extends TestCase
         // XERCESJ-1582
         builder.exclude(TestLookupNamespaceURIWithEmptyDocument.class);
         
-        // XERCESJ-1394
-        builder.exclude(TestLookupNamespaceURIExplicit.class);
-        
         return builder.build();
     }
 }

Modified: webservices/commons/trunk/modules/axiom/modules/axiom-parent/pom.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-parent/pom.xml?rev=1382663&r1=1382662&r2=1382663&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-parent/pom.xml (original)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-parent/pom.xml Mon Sep 10 07:02:43 2012
@@ -468,7 +468,13 @@
             <dependency>
                 <groupId>xerces</groupId>
                 <artifactId>xercesImpl</artifactId>
-                <version>2.9.1</version>
+                <version>2.10.0</version>
+            </dependency>
+            <dependency>
+                <!-- Recent versions of Xerces require this (because they need org.w3c.dom.ElementTraversal) -->
+                <groupId>xml-apis</groupId>
+                <artifactId>xml-apis</artifactId>
+                <version>1.4.01</version>
             </dependency>
             <dependency>
             	<groupId>commons-io</groupId>