This is an automated email from the ASF dual-hosted git repository.
reta pushed a commit to branch 4.0.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git
The following commit(s) were added to refs/heads/4.0.x-fixes by this push:
new bafaa9dc34 Fix
org.apache.cxf.systest.type_test.soap.SOAPRpcLitClientTypeTest test cases under
JDK-22
bafaa9dc34 is described below
commit bafaa9dc34417d11631d8f02eb79681821d321e7
Author: Andriy Redko <[email protected]>
AuthorDate: Sun Aug 25 09:34:08 2024 -0400
Fix org.apache.cxf.systest.type_test.soap.SOAPRpcLitClientTypeTest test
cases under JDK-22
---
systests/uncategorized/pom.xml | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/systests/uncategorized/pom.xml b/systests/uncategorized/pom.xml
index 0c2271a6a3..33cc2a20bf 100644
--- a/systests/uncategorized/pom.xml
+++ b/systests/uncategorized/pom.xml
@@ -401,5 +401,15 @@
</dependency>
</dependencies>
</profile>
+ <profile>
+ <id>jdk22</id>
+ <activation>
+ <jdk>[22,)</jdk>
+ </activation>
+ <properties>
+ <!-- JAXB: see please
https://github.com/javaee/jaxb-v2/issues/1184 -->
+ <cxf.surefire.fork.vmargs>--add-opens
java.xml/javax.xml.namespace=ALL-UNNAMED</cxf.surefire.fork.vmargs>
+ </properties>
+ </profile>
</profiles>
</project>