16 lines
212 B
Groovy
16 lines
212 B
Groovy
/*
|
|
apply plugin: 'findbugs'
|
|
|
|
findbugs {
|
|
ignoreFailures = true
|
|
sourceSets = [sourceSets.main]
|
|
}
|
|
|
|
tasks.withType(FindBugs) {
|
|
reports {
|
|
xml.enabled = false
|
|
html.enabled = true
|
|
}
|
|
}
|
|
*/
|