File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ plugins {
22
22
id ' org.jetbrains.dokka' version " $kotlinVersion "
23
23
id ' org.asciidoctor.jvm.pdf' version ' 3.3.2'
24
24
id ' org.asciidoctor.jvm.convert' version ' 3.3.2'
25
+ id ' com.github.spotbugs' version ' 6.0.7'
25
26
}
26
27
27
28
if (isCI) {
59
60
commonsNetVersion = ' 3.9.0'
60
61
curatorVersion = ' 5.5.0'
61
62
derbyVersion = ' 10.16.1.1'
62
- findbugsVersion = ' 3.0.1'
63
63
ftpServerVersion = ' 1.2.0'
64
64
graalvmVersion = ' 22.3.4'
65
65
greenmailVersion = ' 2.0.0'
@@ -248,9 +248,10 @@ configure(javaProjects) { subproject ->
248
248
}
249
249
}
250
250
251
- // JSR-305 only used for non-required meta-annotations
252
- compileOnly " com.google.code.findbugs:annotations:$findbugsVersion "
253
- testImplementation " com.google.code.findbugs:annotations:$findbugsVersion "
251
+ def spotbugsAnnotations = " com.github.spotbugs:spotbugs-annotations:${ spotbugs.toolVersion.get()} "
252
+ compileOnly spotbugsAnnotations
253
+ testCompileOnly spotbugsAnnotations
254
+
254
255
testImplementation(" org.awaitility:awaitility:$awaitilityVersion " ) {
255
256
exclude group : ' org.hamcrest'
256
257
}
You can’t perform that action at this time.
0 commit comments