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 e4a8703 commit 261aea6Copy full SHA for 261aea6
gradle/spotbugs.gradle
@@ -59,5 +59,11 @@ tasks.matching { it.name.startsWith('spotbugs') }.configureEach {
59
}
60
61
dependencies {
62
- compileOnly libs.spotbugs.annotations
+ compileOnly(libs.spotbugs.annotations)
63
+ testImplementation(libs.spotbugs.annotations) {
64
+ // Exclude conflicting JUnit5 version from latest spotbugs.
65
+ exclude group: 'org.junit'
66
+ exclude group: 'org.junit.jupiter'
67
+ exclude group: 'org.junit.platform'
68
+ }
69
0 commit comments