This is an automated email from the ASF dual-hosted git repository. matrei pushed a commit to branch deprecate-for-removal in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit cff5156694ba3da2a24a553d0b489573d266dfa5 Author: Mattias Reichel <[email protected]> AuthorDate: Fri Feb 27 18:05:19 2026 +0100 deprecate: GrailsApplication constants Add for removal. --- grails-core/src/main/groovy/grails/core/GrailsApplication.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/grails-core/src/main/groovy/grails/core/GrailsApplication.java b/grails-core/src/main/groovy/grails/core/GrailsApplication.java index 7c999a797c..c53ac04b58 100644 --- a/grails-core/src/main/groovy/grails/core/GrailsApplication.java +++ b/grails-core/src/main/groovy/grails/core/GrailsApplication.java @@ -56,17 +56,17 @@ public interface GrailsApplication extends ApplicationContextAware { /** * The name of the class that provides configuration */ - @Deprecated + @Deprecated(forRemoval = true) String CONFIG_CLASS = "Config"; /** * The name of the DataSource class */ - @Deprecated + @Deprecated(forRemoval = true) String DATA_SOURCE_CLASS = "DataSource"; /** * The name of the project metadata file */ - @Deprecated + @Deprecated(forRemoval = true) String PROJECT_META_FILE = "application.properties"; /** * The name of the transaction manager bean
