This is an automated email from the ASF dual-hosted git repository.
reta pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git
The following commit(s) were added to refs/heads/master by this push:
new efc5d35 CXF-8407: Incorporate changes caused by JEP-396 integration
into JDK-16+ (part 1)
efc5d35 is described below
commit efc5d35498f582335821cc6a2b750df935295f14
Author: reta <[email protected]>
AuthorDate: Thu Jan 28 15:33:48 2021 -0500
CXF-8407: Incorporate changes caused by JEP-396 integration into JDK-16+
(part 1)
---
core/pom.xml | 5 +++++
parent/pom.xml | 2 +-
rt/databinding/aegis/pom.xml | 5 +++++
3 files changed, 11 insertions(+), 1 deletion(-)
diff --git a/core/pom.xml b/core/pom.xml
index 4b7582c..89b8e3e 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -209,6 +209,11 @@
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>
<plugins>
diff --git a/parent/pom.xml b/parent/pom.xml
index 81224e7..4ef87d0 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -2383,7 +2383,7 @@
</activation>
<properties>
<!-- EasyMock stills uses JDK Internal APIs: see please
https://bugs.openjdk.java.net/browse/JDK-8255363 -->
- <cxf.surefire.fork.vmargs>-ea --add-opens
java.base/java.lang=ALL-UNNAMED --add-exports
java.xml/com.sun.org.apache.xerces.internal.impl.xs=ALL-UNNAMED --add-exports
java.xml/com.sun.org.apache.xerces.internal.impl.xs.util=ALL-UNNAMED
--add-exports java.xml/com.sun.org.apache.xerces.internal.jaxp=ALL-UNNAMED
--add-opens java.base/java.util.concurrent=ALL-UNNAMED --add-opens
java.base/java.net=ALL-UNNAMED --add-opens
java.base/java.util=ALL-UNNAMED</cxf.surefire.fork.vmargs>
+ <cxf.surefire.fork.vmargs>-ea --add-opens
java.base/java.lang=ALL-UNNAMED --add-opens
java.base/java.util.concurrent=ALL-UNNAMED --add-opens
java.base/java.net=ALL-UNNAMED --add-opens
java.base/java.util=ALL-UNNAMED</cxf.surefire.fork.vmargs>
</properties>
</profile>
</profiles>
diff --git a/rt/databinding/aegis/pom.xml b/rt/databinding/aegis/pom.xml
index 19b449e..0935c89 100644
--- a/rt/databinding/aegis/pom.xml
+++ b/rt/databinding/aegis/pom.xml
@@ -133,6 +133,11 @@
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>
<plugins>