Skip to content

Commit b5f246e

Browse files
Exclude logback.
1 parent 261aea6 commit b5f246e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

gradle/spotbugs.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,11 @@ tasks.matching { it.name.startsWith('spotbugs') }.configureEach {
6161
dependencies {
6262
compileOnly(libs.spotbugs.annotations)
6363
testImplementation(libs.spotbugs.annotations) {
64-
// Exclude conflicting JUnit5 version from latest spotbugs.
64+
// Exclude conflicting JUnit5.
6565
exclude group: 'org.junit'
6666
exclude group: 'org.junit.jupiter'
6767
exclude group: 'org.junit.platform'
68+
// Exclude conflicting logback.
69+
exclude group: 'ch.qos.logback'
6870
}
6971
}

0 commit comments

Comments
 (0)