Skip to content

Commit 5c8d9d9

Browse files
committed
Update LoaderIntegrationTests as Java 23 is no longer in early access
Closes gh-44208
1 parent ea76e46 commit 5c8d9d9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

spring-boot-tests/spring-boot-integration-tests/spring-boot-loader-classic-tests/src/dockerTest/java/org/springframework/boot/loader/LoaderIntegrationTests.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2024 the original author or authors.
2+
* Copyright 2012-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -83,7 +83,7 @@ static Stream<JavaRuntime> javaRuntimes() {
8383
javaRuntimes.add(JavaRuntime.openJdk(JavaVersion.TWENTY_ONE));
8484
javaRuntimes.add(JavaRuntime.oracleJdk17());
8585
javaRuntimes.add(JavaRuntime.openJdk(JavaVersion.TWENTY_TWO));
86-
javaRuntimes.add(JavaRuntime.openJdkEarlyAccess(JavaVersion.TWENTY_THREE));
86+
javaRuntimes.add(JavaRuntime.openJdk(JavaVersion.TWENTY_THREE));
8787
return javaRuntimes.stream().filter(JavaRuntime::isCompatible);
8888
}
8989

spring-boot-tests/spring-boot-integration-tests/spring-boot-loader-tests/src/dockerTest/java/org/springframework/boot/loader/LoaderIntegrationTests.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2024 the original author or authors.
2+
* Copyright 2012-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -111,7 +111,7 @@ static Stream<JavaRuntime> javaRuntimes() {
111111
javaRuntimes.add(JavaRuntime.openJdk(JavaVersion.TWENTY_ONE));
112112
javaRuntimes.add(JavaRuntime.oracleJdk17());
113113
javaRuntimes.add(JavaRuntime.openJdk(JavaVersion.TWENTY_TWO));
114-
javaRuntimes.add(JavaRuntime.openJdkEarlyAccess(JavaVersion.TWENTY_THREE));
114+
javaRuntimes.add(JavaRuntime.openJdk(JavaVersion.TWENTY_THREE));
115115
return javaRuntimes.stream().filter(JavaRuntime::isCompatible);
116116
}
117117

0 commit comments

Comments
 (0)