16 lines
232 B
Groovy
16 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)
|
||
|
}
|
||
|
}
|