File tree Expand file tree Collapse file tree 3 files changed +15
-0
lines changed
jaxrs/jaxrs-2.0/jaxrs-2.0-tomee-testing
jaxws/jaxws-2.0-tomee-testing
spring/spring-rmi-4.0/javaagent Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,11 @@ dependencies {
1414 testInstrumentation(project(" :instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-cxf-3.2:javaagent" ))
1515}
1616
17+ otelJava {
18+ // due to security manager deprecation this test does not work on jdk 24 with default configuration
19+ maxJavaVersionForTests.set(JavaVersion .VERSION_23 )
20+ }
21+
1722tasks.withType<Test >().configureEach {
1823 // required on jdk17
1924 jvmArgs(" --add-opens=java.base/java.lang=ALL-UNNAMED" )
Original file line number Diff line number Diff line change @@ -15,6 +15,11 @@ dependencies {
1515 testInstrumentation(project(" :instrumentation:jaxws:jaxws-jws-api-1.1:javaagent" ))
1616}
1717
18+ otelJava {
19+ // due to security manager deprecation this test does not work on jdk 24 with default configuration
20+ maxJavaVersionForTests.set(JavaVersion .VERSION_23 )
21+ }
22+
1823tasks.withType<Test >().configureEach {
1924 // required on jdk17
2025 jvmArgs(" --add-opens=java.base/java.lang=ALL-UNNAMED" )
Original file line number Diff line number Diff line change @@ -28,6 +28,11 @@ dependencies {
2828 latestDepTestLibrary(" org.springframework.boot:spring-boot:2.+" ) // documented limitation
2929}
3030
31+ otelJava {
32+ // due to security manager deprecation this test does not work on jdk 24 with default configuration
33+ maxJavaVersionForTests.set(JavaVersion .VERSION_23 )
34+ }
35+
3136tasks.withType<Test >().configureEach {
3237 jvmArgs(" -Djava.rmi.server.hostname=127.0.0.1" )
3338}
You can’t perform that action at this time.
0 commit comments