jacc/gradle/codequality/spotbugs.gradle

18 lines
306 B
Groovy
Raw Normal View History

apply plugin: "com.github.spotbugs"
spotbugs {
effort = "max"
reportLevel = "low"
//includeFilter = file("findbugs-exclude.xml")
}
/*
tasks.withType(com.github.spotbugs.SpotBugsTask) {
ignoreFailures = true
reports {
xml.enabled = false
html.enabled = true
}
}
*/