This is an automated email from the ASF dual-hosted git repository.

reta pushed a commit to branch 3.6.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git

commit 086dc3dde05302d6e9dc4835862d0df2fe706701
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)
    
    (cherry picked from commit 99972ffd05a5a6e00673ad330a66ba50f1c6fe94)
    (cherry picked from commit 8c78f807cdf84bacbd33bfa5b0647ac76c4a6627)
---
 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 b33e0e04ea..349fd7360c 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>

Reply via email to