19 lines
284 B
Groovy
19 lines
284 B
Groovy
|
apply plugin: "com.github.spotbugs"
|
||
|
|
||
|
spotbugs {
|
||
|
ignoreFailures = true
|
||
|
}
|
||
|
|
||
|
spotbugsMain {
|
||
|
reports {
|
||
|
html {
|
||
|
enabled = true
|
||
|
destination = file("$buildDir/reports/spotbugs/main/spotbugs.html")
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
spotbugsTest {
|
||
|
enabled = false
|
||
|
}
|