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
commit 8c78f807cdf84bacbd33bfa5b0647ac76c4a6627 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) --- 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 bae8c60141..dca354ae9d 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>
