Skip to content

Commit 13dbd80

Browse files
committed
updating to spotbugs 6.0.3
* instead of failing because it doesn't support java 21, it now fails with hundreds of new bug reports
1 parent 0895474 commit 13dbd80

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ plugins {
1111
id 'jacoco'
1212
id 'com.palantir.git-version' version '0.11.0'
1313
id 'com.github.johnrengelman.shadow' version '8.1.1'
14-
id 'com.github.spotbugs' version "5.0.13"
14+
id 'com.github.spotbugs' version "6.0.4"
1515
}
1616

1717
repositories {
@@ -174,7 +174,8 @@ if(project == rootProject) {
174174
}
175175

176176
spotbugs {
177-
reportLevel = 'high'
177+
effort = com.github.spotbugs.snom.Effort.valueOf('DEFAULT')
178+
reportLevel = com.github.spotbugs.snom.Confidence.valueOf('DEFAULT')
178179
excludeFilter = file('gradle/spotbugs-exclude.xml')
179180
}
180181

0 commit comments

Comments
 (0)