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 3fa95f3869a87256e88868ef011dd3082e84e43d Author: Mattias Reichel <[email protected]> AuthorDate: Fri Feb 27 15:06:22 2026 +0100 deprecate: GrailsConfigUtils.executeGrailsBootstraps Add for removal. --- .../main/groovy/org/grails/web/servlet/context/GrailsConfigUtils.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/grails-web-core/src/main/groovy/org/grails/web/servlet/context/GrailsConfigUtils.java b/grails-web-core/src/main/groovy/org/grails/web/servlet/context/GrailsConfigUtils.java index c868cccdc0..e581c4c84e 100644 --- a/grails-web-core/src/main/groovy/org/grails/web/servlet/context/GrailsConfigUtils.java +++ b/grails-web-core/src/main/groovy/org/grails/web/servlet/context/GrailsConfigUtils.java @@ -44,8 +44,9 @@ public class GrailsConfigUtils { * @param application The Grails ApplicationContext instance * @param webContext The WebApplicationContext instance * @param servletContext The ServletContext instance + * @deprecated Use executeGrailsBootstraps with Grails plugin manager parameter instead */ - @Deprecated + @Deprecated(forRemoval = true) public static void executeGrailsBootstraps(GrailsApplication application, WebApplicationContext webContext, ServletContext servletContext) { executeGrailsBootstraps(application, webContext, servletContext, null);
