We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6d9304 commit d71a513Copy full SHA for d71a513
grails-forge/grails-forge-core/src/main/java/org/grails/forge/options/JdkVersion.java
@@ -31,7 +31,9 @@
31
public enum JdkVersion {
32
JDK_17(17),
33
JDK_21(21),
34
- JDK_23(23);
+ // 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);
37
38
public static final JdkVersion DEFAULT_OPTION = JDK_17;
39
0 commit comments