File tree 4 files changed +17
-2
lines changed
jaxrs/jaxrs-2.0/jaxrs-2.0-wildfly-testing
jaxws/jaxws-2.0-wildfly-testing
spring/spring-webmvc/spring-webmvc-3.1/wildfly-testing
4 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ jobs:
198
198
- 11
199
199
- 17
200
200
- 21
201
- - 22
201
+ - 23
202
202
vm :
203
203
- hotspot
204
204
- openj9
@@ -209,7 +209,7 @@ jobs:
209
209
- 3
210
210
exclude :
211
211
- vm : ${{ inputs.skip-openj9-tests && 'openj9' || '' }}
212
- - test-java-version : 22
212
+ - test-java-version : 23
213
213
vm : openj9
214
214
fail-fast : false
215
215
steps :
Original file line number Diff line number Diff line change @@ -18,6 +18,11 @@ dependencies {
18
18
testServer(" org.wildfly:wildfly-dist:18.0.0.Final@zip" )
19
19
}
20
20
21
+ otelJava {
22
+ // due to security manager deprecation this test does not work on jdk 23 with default configuration
23
+ maxJavaVersionForTests.set(JavaVersion .VERSION_22 )
24
+ }
25
+
21
26
tasks {
22
27
// extract wildfly dist, path is used from arquillian.xml
23
28
val setupServer by registering(Copy ::class ) {
Original file line number Diff line number Diff line change @@ -19,6 +19,11 @@ dependencies {
19
19
testServer(" org.wildfly:wildfly-dist:18.0.0.Final@zip" )
20
20
}
21
21
22
+ otelJava {
23
+ // due to security manager deprecation this test does not work on jdk 23 with default configuration
24
+ maxJavaVersionForTests.set(JavaVersion .VERSION_22 )
25
+ }
26
+
22
27
tasks {
23
28
// extract wildfly dist, path is used from arquillian.xml
24
29
val setupServer by registering(Copy ::class ) {
Original file line number Diff line number Diff line change @@ -28,6 +28,11 @@ dependencies {
28
28
testServer(" org.wildfly:wildfly-dist:18.0.0.Final@zip" )
29
29
}
30
30
31
+ otelJava {
32
+ // due to security manager deprecation this test does not work on jdk 23 with default configuration
33
+ maxJavaVersionForTests.set(JavaVersion .VERSION_22 )
34
+ }
35
+
31
36
tasks {
32
37
// extract wildfly dist, path is used from arquillian.xml
33
38
val setupServer by registering(Copy ::class ) {
You can’t perform that action at this time.
0 commit comments