guice/gradle/quality/spotbugs.gradle

16 lines
232 B
Groovy
Raw Permalink Normal View History

2023-05-25 22:07:14 +02:00
apply plugin: 'com.github.spotbugs'
2021-06-03 19:53:05 +02:00
spotbugs {
effort = "max"
reportLevel = "low"
ignoreFailures = true
}
2023-05-25 22:07:14 +02:00
spotbugsMain {
2021-06-03 19:53:05 +02:00
reports {
2023-05-25 22:07:14 +02:00
xml.getRequired().set(false)
html.getRequired().set(true)
2021-06-03 19:53:05 +02:00
}
}