From fd97bc618cde73fd2417420d5cfea4430762c30b Mon Sep 17 00:00:00 2001 From: Michael Yan Date: Sat, 18 Jan 2025 08:41:43 +0800 Subject: [PATCH] Spring Boot 3.2 is no longer supported Closes gh-894 --- .../org/grails/cli/profile/commands/CreateAppCommand.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grace-shell/src/main/groovy/org/grails/cli/profile/commands/CreateAppCommand.groovy b/grace-shell/src/main/groovy/org/grails/cli/profile/commands/CreateAppCommand.groovy index ae5b1cfaa6..2ec6b5e5a1 100644 --- a/grace-shell/src/main/groovy/org/grails/cli/profile/commands/CreateAppCommand.groovy +++ b/grace-shell/src/main/groovy/org/grails/cli/profile/commands/CreateAppCommand.groovy @@ -94,7 +94,7 @@ class CreateAppCommand extends ArgumentCompletingCommand implements ProfileRepos public static final String BOOT_VERSION_FLAG = 'boot-version' public static final String[] SUPPORT_GRACE_VERSIONS = ['2023', '2022', '6', '5', '4', '3'] - public static final String[] SUPPORT_SPRING_BOOT_VERSIONS = ['3.2', '3.3', '3.4'] + public static final String[] SUPPORT_SPRING_BOOT_VERSIONS = ['3.3', '3.4'] public static final String UNZIP_PROFILE_TEMP_DIR = 'grails-profile-' public static final String UNZIP_TEMPLATE_TEMP_DIR = 'grails-template-'