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 44c2910641333480f26b3253c24f17c712580124 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) --- 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 89330458b7..548cf0b2c7 100644 --- a/rt/transports/jms/pom.xml +++ b/rt/transports/jms/pom.xml @@ -167,4 +167,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 dac78f5905..8df99dab51 100644 --- a/services/wsn/wsn-core/pom.xml +++ b/services/wsn/wsn-core/pom.xml @@ -162,4 +162,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>
