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 53f286c0cd06826dd347c560cd0bb76cd38af8d6 Author: Andriy Redko <[email protected]> AuthorDate: Tue Oct 22 21:35:11 2024 -0400 JDK-23: Fix cxf-services-wsn-core and cxf-rt-transports-jms test suites (https://bugs.openjdk.org/browse/JDK-8296244) (cherry picked from commit b111cbdfe064fa7901e99f31fcd5c5ffeb332219) (cherry picked from commit 44c2910641333480f26b3253c24f17c712580124) --- rt/transports/jms/pom.xml | 20 ++++++++++++++++++++ services/wsn/wsn-core/pom.xml | 20 ++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/rt/transports/jms/pom.xml b/rt/transports/jms/pom.xml index a05d3abf32..9bb6fd2414 100644 --- a/rt/transports/jms/pom.xml +++ b/rt/transports/jms/pom.xml @@ -178,4 +178,24 @@ </plugin> </plugins> </build> + + <profiles> + <profile> + <id>jdk23</id> + <activation> + <jdk>[23,)</jdk> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <argLine>-Djava.security.manager=allow</argLine> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> </project> diff --git a/services/wsn/wsn-core/pom.xml b/services/wsn/wsn-core/pom.xml index ec2a246aed..3cf35c4ba9 100644 --- a/services/wsn/wsn-core/pom.xml +++ b/services/wsn/wsn-core/pom.xml @@ -160,4 +160,24 @@ </plugin> </plugins> </build> + + <profiles> + <profile> + <id>jdk23</id> + <activation> + <jdk>[23,)</jdk> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <argLine>-Djava.security.manager=allow</argLine> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> </project>
