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