[Build] Cleanup redundant build console output - #16104
Open
matrei wants to merge 2 commits into
Open
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## 8.0.x #16104 +/- ##
==================================================
+ Coverage 52.3410% 52.3556% +0.0145%
- Complexity 18293 18300 +7
==================================================
Files 2036 2036
Lines 96347 96347
Branches 16829 16829
==================================================
+ Hits 50429 50443 +14
+ Misses 38493 38482 -11
+ Partials 7425 7422 -3 🚀 New features to boost your workflow:
|
✅ All tests passed ✅🏷️ Commit: 388e5af Learn more about TestLens at testlens.app. |
jdaugherty
approved these changes
Aug 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request focuses on eliminating SLF4J implementation warnings during compilation and testing across multiple modules by consistently adding the
org.slf4j:slf4j-nopdependency where appropriate. Additionally, it adjusts a logging statement in the SBOM plugin to reduce log verbosity.The most important changes are:
Suppressing SLF4J Warnings (by module):
General build and plugin modules:
compileOnly 'org.slf4j:slf4j-nop'to the compile classpath in various modules (e.g.,grails-core,grails-console,grails-codecs,grails-controllers,grails-converters,grails-data-graphql,grails-data-hibernate5,grails-data-hibernate7,grails-data-mongodb,grails-async,grails-cache, etc.) to prevent warnings about missing SLF4J implementations during compilation. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13]Test and CLI configurations:
testCompileOnlyand/ortestImplementation 'org.slf4j:slf4j-nop'to test configurations in several modules to suppress SLF4J warnings during test compilation and execution. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10]AST and CLI-specific configurations:
astCompileOnlyandcliCompileOnly 'org.slf4j:slf4j-nop'in appropriate modules to prevent warnings in annotation processing and CLI builds. [1] [2] [3] [4] [5]Logging adjustment:
SBOM Plugin:
lifecycletoinfofor the message about forcing a license inSbomPlugin.groovy, reducing log verbosity during builds.These changes collectively improve the developer experience by ensuring cleaner build and test logs and more consistent dependency management.