15 lines
231 B
Groovy
15 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)
|
||
|
}
|
||
|
}
|