Skip to content

Commit

Permalink
updating to spotbugs 6.0.3
Browse files Browse the repository at this point in the history
* instead of failing because it doesn't support java 21, it now fails with
hundreds of new bug reports
  • Loading branch information
lbergelson committed Dec 18, 2023
1 parent 0895474 commit 13dbd80
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
id 'jacoco'
id 'com.palantir.git-version' version '0.11.0'
id 'com.github.johnrengelman.shadow' version '8.1.1'
id 'com.github.spotbugs' version "5.0.13"
id 'com.github.spotbugs' version "6.0.4"
}

repositories {
Expand Down Expand Up @@ -174,7 +174,8 @@ if(project == rootProject) {
}

spotbugs {
reportLevel = 'high'
effort = com.github.spotbugs.snom.Effort.valueOf('DEFAULT')
reportLevel = com.github.spotbugs.snom.Confidence.valueOf('DEFAULT')
excludeFilter = file('gradle/spotbugs-exclude.xml')
}

Expand Down

0 comments on commit 13dbd80

Please sign in to comment.