This is an automated email from the ASF dual-hosted git repository.
jlmonteiro pushed a commit to branch java11-take2
in repository https://gitbox.apache.org/repos/asf/tomee.git
The following commit(s) were added to refs/heads/java11-take2 by this push:
new 63b9ccd add some exclusions
63b9ccd is described below
commit 63b9ccd5972f5ba0ad73e5480f24db05c1f52016
Author: Jean-Louis Monteiro <[email protected]>
AuthorDate: Tue Jul 30 10:38:49 2019 +0200
add some exclusions
---
container/openejb-core/pom.xml | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/container/openejb-core/pom.xml b/container/openejb-core/pom.xml
index 407fb87..e8307c1 100644
--- a/container/openejb-core/pom.xml
+++ b/container/openejb-core/pom.xml
@@ -717,6 +717,11 @@
<jdk>11</jdk>
</activation>
<dependencies>
+ <!-- CXF does not support 4.1 that comes with Sun WS implementation -->
+ <dependency>
+ <groupId>org.codehaus.woodstox</groupId>
+ <artifactId>stax2-api</artifactId>
+ </dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jaxb_2.2_spec</artifactId>
@@ -724,6 +729,20 @@
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
+ <exclusions>
+ <exclusion> <!-- Is already included in java-ee-api -->
+ <groupId>jakarta.activation</groupId>
+ <artifactId>jakarta.activation-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>jakarta.xml.bind</groupId>
+ <artifactId>jakarta.xml.bind-api</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.glassfish.corba</groupId>
+ <artifactId>glassfish-corba-omgapi</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.ws</groupId>