2020-06-04 23:41:01 +02:00
|
|
|
apply plugin: "com.github.spotbugs"
|
|
|
|
|
|
|
|
spotbugs {
|
2022-08-04 11:47:14 +02:00
|
|
|
toolVersion = '4.7.1'
|
2020-06-04 23:41:01 +02:00
|
|
|
ignoreFailures = true
|
|
|
|
}
|
|
|
|
|
|
|
|
spotbugsMain {
|
|
|
|
reports {
|
|
|
|
html {
|
|
|
|
enabled = true
|
|
|
|
destination = file("$buildDir/reports/spotbugs/main/spotbugs.html")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
spotbugsTest {
|
|
|
|
enabled = false
|
|
|
|
}
|