Skip to content

Commit d71a513

Browse files
committed
Move from non-LTS JDK 23 to non-LTS JDK 24
1 parent f6d9304 commit d71a513

File tree

1 file changed

+3
-1
lines changed
  • grails-forge/grails-forge-core/src/main/java/org/grails/forge/options

1 file changed

+3
-1
lines changed

grails-forge/grails-forge-core/src/main/java/org/grails/forge/options/JdkVersion.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@
3131
public enum JdkVersion {
3232
JDK_17(17),
3333
JDK_21(21),
34-
JDK_23(23);
34+
// 24 is the current non-LTS release and will be replaced by 25 (LTS) in Sep 2025
35+
// Spring Framework 6.2.x and Spring Boot 3.5.x will support 25
36+
JDK_24(24);
3537

3638
public static final JdkVersion DEFAULT_OPTION = JDK_17;
3739

0 commit comments

Comments
 (0)