com.github.spotbugs
Owner: Kengo TODA
Performs quality checks on your project's Java source files using SpotBugs and generates reports from these checks
https://github.com/spotbugs/spotbugs-gradle-plugin
Sources: https://github.com/spotbugs/spotbugs
Version 4.7.10
4.7.10
Created 15 November 2021.
A Gradle plugin that runs static bytecode analysis by SpotBugs
Using the plugins DSL:
plugins {
id("com.github.spotbugs") version "4.7.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.spotbugs.snom:spotbugs-gradle-plugin:4.7.10")
}
}
apply(plugin = "com.github.spotbugs")
Using the plugins DSL:
plugins {
id "com.github.spotbugs" version "4.7.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.spotbugs.snom:spotbugs-gradle-plugin:4.7.10"
}
}
apply plugin: "com.github.spotbugs"