You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by dk...@apache.org on 2021/05/05 15:17:33 UTC

[ws-xmlschema] branch master updated: Exclude xml-apis, not needed with any recent java

This is an automated email from the ASF dual-hosted git repository.

dkulp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ws-xmlschema.git


The following commit(s) were added to refs/heads/master by this push:
     new 882a3f9  Exclude xml-apis, not needed with any recent java
882a3f9 is described below

commit 882a3f980e3bd6294e49f90952b8ea824028eead
Author: Daniel Kulp <dk...@apache.org>
AuthorDate: Wed May 5 11:17:01 2021 -0400

    Exclude xml-apis, not needed with any recent java
---
 xmlschema-core/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/xmlschema-core/pom.xml b/xmlschema-core/pom.xml
index 849b2c7..c8ee1f0 100644
--- a/xmlschema-core/pom.xml
+++ b/xmlschema-core/pom.xml
@@ -174,6 +174,12 @@
             <artifactId>xercesImpl</artifactId>
             <version>2.12.1</version>
             <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <artifactId>xml-apis</artifactId>
+                    <groupId>xml-apis</groupId>
+                </exclusion>
+            </exclusions>
         </dependency>
     </dependencies>
 </project>