diff --git a/.bomr/bomr.yaml b/.bomr/bomr.yaml
index 733593316c..3027b7b83a 100644
--- a/.bomr/bomr.yaml
+++ b/.bomr/bomr.yaml
@@ -16,10 +16,6 @@ bomr:
versions:
# Switches to Jarkarta EE API dependencies resulting in duplicate classes
- '[2.3.2,2.4)'
- - project: groovy
- versions:
- # Regression with @Log
- - '[2.5.13,2.5.14)'
- project: saaj-impl
versions:
# Switches to Jarkarta EE API dependencies resulting in duplicate classes
diff --git a/spring-boot-project/spring-boot-cli/samples/ui.groovy b/spring-boot-project/spring-boot-cli/samples/ui.groovy
index 7db73adb61..2cf456c623 100644
--- a/spring-boot-project/spring-boot-cli/samples/ui.groovy
+++ b/spring-boot-project/spring-boot-cli/samples/ui.groovy
@@ -26,7 +26,7 @@ class MvcConfiguration extends WebMvcConfigurerAdapter {
log.info "Creating interceptor"
[
postHandle: { request, response, handler, mav ->
- log.info "Intercepted: model=" + mav.model
+ MvcConfiguration.log.info "Intercepted: model=" + mav.model
}
] as HandlerInterceptorAdapter
}
diff --git a/spring-boot-project/spring-boot-dependencies/pom.xml b/spring-boot-project/spring-boot-dependencies/pom.xml
index c23f7d2631..56e8ba7679 100644
--- a/spring-boot-project/spring-boot-dependencies/pom.xml
+++ b/spring-boot-project/spring-boot-dependencies/pom.xml
@@ -65,7 +65,7 @@