Skip to content

Instantly share code, notes, and snippets.

@ivarprudnikov
Last active March 19, 2019 18:26
Show Gist options
  • Save ivarprudnikov/94e0955286d8c6c742d08ff9c647e0a2 to your computer and use it in GitHub Desktop.
Save ivarprudnikov/94e0955286d8c6c742d08ff9c647e0a2 to your computer and use it in GitHub Desktop.
Adding SpotBugs v1.7.1 to gradle v5 project
import com.github.spotbugs.SpotBugsTask
// ...
plugins {
// ...
id "com.github.spotbugs" version "1.7.1"
}
// ...
test.dependsOn spotbugsMain, spotbugsTest
/**
* SpotBugs config
*
* Settings options from:
* - http://gradle.monochromeroad.com/docs/dsl/org.gradle.api.plugins.quality.FindBugsExtension.html
* - https://spotbugs.readthedocs.io/en/latest/running.html#output-options
* - {@link SpotBugsTask}
* - ./config/spotbugs/excludeFilter.xml
*/
spotbugs {
showProgress = true
reportLevel = 'high'
ignoreFailures = false
excludeFilterConfig = resources.text.fromFile("$rootProject.projectDir/excludeFilter.xml")
extraArgs = ['-longBugCodes','true']
}
tasks.withType(SpotBugsTask) {
reports {
xml {
enabled = false
}
text {
enabled = true
}
}
}
// As I could not find reporting plugin this is what prints
// failures to console
// Credit goes to https://github.com/Opalo and his implementation: https://github.com/Opalo/stackoverflow/blob/master/28069712/build.gradle
tasks.create("printSpotbugsReports") {
doLast {
spotbugsMain.reports.text?.destination?.eachLine {
println 'Failure: ' + it
}
spotbugsTest.reports.text?.destination?.eachLine {
println 'Failure: ' + it
}
}
}
spotbugsMain.finalizedBy printSpotbugsReports
spotbugsTest.finalizedBy printSpotbugsReports
<FindBugsFilter>
<Match>
<Package name="~.*\.foobar.*"/>
</Match>
</FindBugsFilter>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment