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 2016/11/06 14:45:20 UTC

svn commit: r1768338 - /webservices/xmlschema/trunk/xmlschema-core/pom.xml

Author: veithen
Date: Sun Nov  6 14:45:20 2016
New Revision: 1768338

URL: http://svn.apache.org/viewvc?rev=1768338&view=rev
Log:
XMLSCHEMA-43: Fix a test failure on Java 9.

Modified:
    webservices/xmlschema/trunk/xmlschema-core/pom.xml

Modified: webservices/xmlschema/trunk/xmlschema-core/pom.xml
URL: http://svn.apache.org/viewvc/webservices/xmlschema/trunk/xmlschema-core/pom.xml?rev=1768338&r1=1768337&r2=1768338&view=diff
==============================================================================
--- webservices/xmlschema/trunk/xmlschema-core/pom.xml (original)
+++ webservices/xmlschema/trunk/xmlschema-core/pom.xml Sun Nov  6 14:45:20 2016
@@ -167,5 +167,12 @@
             <artifactId>guava-testlib</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <!-- Always test with a well defined DOM implementation -->
+            <groupId>xerces</groupId>
+            <artifactId>xercesImpl</artifactId>
+            <version>2.11.0</version>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 </project>