This is an automated email from the ASF dual-hosted git repository.
reta pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cxf.git
The following commit(s) were added to refs/heads/main by this push:
new 99972ffd05 Fix cxf-systests-ws-transfer test cases for JDK-24
(-Djdk.xml.enableExtensionFunctions=true)
99972ffd05 is described below
commit 99972ffd05a5a6e00673ad330a66ba50f1c6fe94
Author: Andriy Redko <[email protected]>
AuthorDate: Sat May 10 15:49:43 2025 -0400
Fix cxf-systests-ws-transfer test cases for JDK-24
(-Djdk.xml.enableExtensionFunctions=true)
---
systests/ws-transfer/pom.xml | 20 +++++++++++++++++++-
1 file changed, 19 insertions(+), 1 deletion(-)
diff --git a/systests/ws-transfer/pom.xml b/systests/ws-transfer/pom.xml
index e393e420cf..4b7da3976f 100644
--- a/systests/ws-transfer/pom.xml
+++ b/systests/ws-transfer/pom.xml
@@ -67,5 +67,23 @@
<scope>test</scope>
</dependency>
</dependencies>
-
+ <profiles>
+ <profile>
+ <id>jdk24</id>
+ <activation>
+ <jdk>[24,)</jdk>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <argLine>${cxf.surefire.fork.vmargs}
-Djdk.xml.enableExtensionFunctions=true</argLine>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
</project>