14 lines
231 B
Groovy
14 lines
231 B
Groovy
apply plugin: "com.github.spotbugs"
|
|
|
|
spotbugs {
|
|
effort = "min"
|
|
reportLevel = "low"
|
|
ignoreFailures = true
|
|
}
|
|
|
|
spotbugsMain {
|
|
reports {
|
|
xml.getRequired().set(false)
|
|
html.getRequired().set(true)
|
|
}
|
|
}
|