You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by ve...@apache.org on 2016/03/19 21:50:05 UTC

svn commit: r1735810 - /axis/axis2/java/core/trunk/databinding-tests/jaxbri-tests/pom.xml

Author: veithen
Date: Sat Mar 19 20:50:05 2016
New Revision: 1735810

URL: http://svn.apache.org/viewvc?rev=1735810&view=rev
Log:
Work around build failure on Java 8.

Modified:
    axis/axis2/java/core/trunk/databinding-tests/jaxbri-tests/pom.xml

Modified: axis/axis2/java/core/trunk/databinding-tests/jaxbri-tests/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/databinding-tests/jaxbri-tests/pom.xml?rev=1735810&r1=1735809&r2=1735810&view=diff
==============================================================================
--- axis/axis2/java/core/trunk/databinding-tests/jaxbri-tests/pom.xml (original)
+++ axis/axis2/java/core/trunk/databinding-tests/jaxbri-tests/pom.xml Sat Mar 19 20:50:05 2016
@@ -192,6 +192,13 @@
                         <artifactId>axis2-jaxbri</artifactId>
                         <version>${project.version}</version>
                     </dependency>
+                    <dependency>
+                        <!-- Work around "'file' access is not allowed due to restriction set by
+                             the accessExternalSchema property" error on Java 8. -->
+                        <groupId>xerces</groupId>
+                        <artifactId>xercesImpl</artifactId>
+                        <version>2.11.0</version>
+                    </dependency>
                 </dependencies>
             </plugin>
             <plugin>