This is an automated email from the ASF dual-hosted git repository. jamesfredley pushed a commit to branch spring-boot-4 in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit 8624945e29d534be06c7d20e22bd0c37543e3cca Author: James Fredley <[email protected]> AuthorDate: Fri Mar 20 15:38:31 2026 -0400 fix: remove LoaderImplementation usage reintroduced by 8.0.x merge LoaderImplementation was removed in Spring Boot 4. The CLASSIC loader convention was previously removed from GrailsGradlePlugin but was reintroduced when merging 8.0.x into spring-boot-4. Assisted-by: Claude Code <[email protected]> --- .../groovy/org/grails/gradle/plugin/core/GrailsGradlePlugin.groovy | 7 ------- 1 file changed, 7 deletions(-) diff --git a/grails-gradle/plugins/src/main/groovy/org/grails/gradle/plugin/core/GrailsGradlePlugin.groovy b/grails-gradle/plugins/src/main/groovy/org/grails/gradle/plugin/core/GrailsGradlePlugin.groovy index bdfcc62c31..879d725af1 100644 --- a/grails-gradle/plugins/src/main/groovy/org/grails/gradle/plugin/core/GrailsGradlePlugin.groovy +++ b/grails-gradle/plugins/src/main/groovy/org/grails/gradle/plugin/core/GrailsGradlePlugin.groovy @@ -77,8 +77,6 @@ import org.springframework.boot.gradle.plugin.ResolveMainClassName import org.springframework.boot.gradle.plugin.SpringBootPlugin import org.springframework.boot.gradle.tasks.bundling.BootArchive import org.springframework.boot.gradle.tasks.run.BootRun -import org.springframework.boot.loader.tools.LoaderImplementation - import javax.inject.Inject /** @@ -452,11 +450,6 @@ ${importStatements} } } - project.logger.info('Configuring CLASSIC boot loader for Micronaut compatibility in {}', project.name) - project.tasks.withType(BootArchive).configureEach { - it.loaderImplementation.convention(LoaderImplementation.CLASSIC) - } - } }
