This is an automated email from the ASF dual-hosted git repository.

jdaugherty pushed a commit to branch wrapper-rewrite
in repository https://gitbox.apache.org/repos/asf/grails-forge.git


The following commit(s) were added to refs/heads/wrapper-rewrite by this push:
     new 63cd83e  fix slf4j warning
63cd83e is described below

commit 63cd83e652ea266d9888f9eb3f669dd6b06aa09c
Author: James Daugherty <[email protected]>
AuthorDate: Wed May 14 18:43:05 2025 -0400

    fix slf4j warning
---
 grails-cli/build.gradle | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/grails-cli/build.gradle b/grails-cli/build.gradle
index c9cbe21..ab288b0 100644
--- a/grails-cli/build.gradle
+++ b/grails-cli/build.gradle
@@ -55,7 +55,9 @@ dependencies {
     implementation 'org.apache.groovy:groovy-templates'
 
     // forge dependencies
-    implementation project(':grails-forge-cli')
+    implementation project(':grails-forge-cli'), {
+        exclude group: 'org.slf4j', module: 'slf4j-nop'
+    }
 }
 
 apply {

Reply via email to