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 03ac8e4 commit 308bca2Copy full SHA for 308bca2
gradle/spotbugs.gradle
@@ -60,12 +60,15 @@ tasks.matching { it.name.startsWith('spotbugs') }.configureEach {
60
61
dependencies {
62
compileOnly(libs.spotbugs.annotations)
63
+
64
testImplementation(libs.spotbugs.annotations) {
65
// Exclude conflicting JUnit5.
66
exclude group: 'org.junit'
67
exclude group: 'org.junit.jupiter'
68
exclude group: 'org.junit.platform'
69
// Exclude conflicting logback.
70
exclude group: 'ch.qos.logback'
71
+ // Exclude conflicting log4j.
72
+ exclude group: 'org.apache.logging.log4j'
73
}
74
0 commit comments