Skip to content

Commit

Permalink
Fixup build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmudd committed Dec 14, 2023
1 parent 5626722 commit df8d0ba
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions jhdf/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -188,10 +188,12 @@ signing {
sign publishing.publications.maven
}

import com.github.spotbugs.snom.Confidence
import com.github.spotbugs.snom.Effort
spotbugs {
ignoreFailures = true // Allow build to continue with errors
effort = "max"
reportLevel = "low" // Report all issues even low priority
effort = Effort.MAX
reportLevel = Confidence.LOW // Report all issues even low priority
reportsDir = file("$buildDir/reports/spotbugs")
}

Expand Down

0 comments on commit df8d0ba

Please sign in to comment.