We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b420480 commit 2dafe9dCopy full SHA for 2dafe9d
build.gradle
@@ -169,4 +169,17 @@ subprojects {
169
useInMemoryPgpKeys(signingKey, signingPassword)
170
sign publishing.publications.main
171
}
172
+
173
+ configurations {
174
+ all {
175
+ // Exclude multiple SLF4J implementations to prevent binding conflicts
176
+ exclude group: 'org.slf4j', module: 'slf4j-simple'
177
+ exclude group: 'org.slf4j', module: 'slf4j-log4j12'
178
+ exclude group: 'org.slf4j', module: 'slf4j-jdk14'
179
+ exclude group: 'org.slf4j', module: 'slf4j-reload4j'
180
+ // Exclude old logging frameworks
181
+ exclude group: 'log4j', module: 'log4j'
182
+ exclude group: 'commons-logging', module: 'commons-logging'
183
+ }
184
185
0 commit comments