datastructures/gradle/quality/spotbugs.gradle

15 lines
231 B
Groovy
Raw Permalink Normal View History

2022-11-05 20:32:41 +01:00
apply plugin: "com.github.spotbugs"
spotbugs {
effort = "min"
reportLevel = "low"
ignoreFailures = true
}
spotbugsMain {
reports {
xml.getRequired().set(false)
html.getRequired().set(true)
}
}