This is an automated email from the ASF dual-hosted git repository. jdaugherty pushed a commit to branch feature/exploded in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit 5dead20d78dc1f95c466a436dbf26add162f5cea Author: James Daugherty <[email protected]> AuthorDate: Tue Sep 16 15:31:08 2025 -0400 cleanup - remove unused property that was previously used to pin versions prior to the standardization of `grails-bom` --- .../groovy/org/grails/gradle/plugin/core/GrailsGradlePlugin.groovy | 4 ---- 1 file changed, 4 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 8ece45bc64..212c7dfd48 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 @@ -86,10 +86,6 @@ class GrailsGradlePlugin extends GroovyPlugin { public static final String APPLICATION_CONTEXT_COMMAND_CLASS = 'grails.dev.commands.ApplicationCommand' - protected static final List<String> CORE_GORM_LIBRARIES = ['async', 'core', 'simple', 'web', 'rest-client', 'gorm', 'gorm-validation', 'gorm-plugin-support', 'gorm-support', 'test-support', 'hibernate-core', 'gorm-test', 'rx', 'rx-plugin-support'] - // NOTE: mongodb, neo4j etc. should NOT be included here so they can be independently versioned - protected static final List<String> CORE_GORM_PLUGINS = ['hibernate4', 'hibernate5'] - List<Class<Plugin>> basePluginClasses = [IntegrationTestGradlePlugin] as List<Class<Plugin>> List<String> excludedGrailsAppSourceDirs = ['migrations', 'assets'] List<String> grailsAppResourceDirs = ['views', 'i18n', 'conf']
