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.antora' version ' 1.0.0'
24
24
id ' io.spring.antora.generate-antora-yml' version ' 0.0.1'
25
+ id ' com.github.spotbugs' version ' 6.0.7'
25
26
}
26
27
27
28
if (isCI) {
65
66
curatorVersion = ' 5.5.0'
66
67
debeziumVersion = ' 2.4.2.Final'
67
68
derbyVersion = ' 10.16.1.1'
68
- findbugsVersion = ' 3.0.1'
69
69
ftpServerVersion = ' 1.2.0'
70
70
graalvmVersion = ' 23.0.2'
71
71
greenmailVersion = ' 2.1.0-alpha-3'
@@ -256,9 +256,10 @@ configure(javaProjects) { subproject ->
256
256
api project(' :spring-integration-core' )
257
257
}
258
258
259
- // JSR-305 only used for non-required meta-annotations
260
- compileOnly " com.google.code.findbugs:annotations:$findbugsVersion "
261
- testImplementation " com.google.code.findbugs:annotations:$findbugsVersion "
259
+ def spotbugsAnnotations = " com.github.spotbugs:spotbugs-annotations:${ spotbugs.toolVersion.get()} "
260
+ compileOnly spotbugsAnnotations
261
+ testCompileOnly spotbugsAnnotations
262
+
262
263
testImplementation(" org.awaitility:awaitility:$awaitilityVersion " ) {
263
264
exclude group : ' org.hamcrest'
264
265
}
You can’t perform that action at this time.
0 commit comments