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

[cxf] 01/02: Need to exclude the old version of stax-api that SAAJ impl pulls in on Java11

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/cxf.git

commit 2e44ce12233c213b5fef8bbc28d71554554a8fbb
Author: Daniel Kulp <dk...@apache.org>
AuthorDate: Mon May 6 11:51:31 2019 -0400

    Need to exclude the old version of stax-api that SAAJ impl pulls in on Java11
---
 parent/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/parent/pom.xml b/parent/pom.xml
index 84d602e..4d8b1d0 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -2848,6 +2848,12 @@
                     <groupId>com.sun.xml.messaging.saaj</groupId>
                     <artifactId>saaj-impl</artifactId>
                     <version>1.4.0-b03</version>
+                    <exclusions>
+                        <exclusion>
+                            <groupId>javax.xml.stream</groupId>
+                            <artifactId>stax-api</artifactId>
+                        </exclusion>
+                    </exclusions>
                 </dependency>
                 <dependency>
                     <groupId>org.jacorb</groupId>