Copilot commented on code in PR #15566:
URL: https://github.com/apache/grails-core/pull/15566#discussion_r3059388484
##########
grails-databinding/build.gradle:
##########
@@ -34,6 +34,8 @@ group = 'org.apache.grails'
dependencies {
implementation platform(project(':grails-bom'))
+ annotationProcessor platform(project(':grails-bom'))
+ annotationProcessor
'org.springframework.boot:spring-boot-configuration-processor'
Review Comment:
This same dependency block is duplicated across multiple modules in this PR.
To reduce drift and make future updates easier, consider centralizing this in
shared Gradle build logic (e.g., a convention plugin in buildSrc / included
build, or a shared script applied by the relevant subprojects) so the processor
+ BOM wiring is defined in one place.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]