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 082ed63 commit c3eee01
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 @@ -187,10 +187,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 c3eee01

Please sign in to comment.