com.github.spotbugs-base
Owner: Kengo TODA
A base Gradle plugin that runs static bytecode analysis by SpotBugs
https://github.com/spotbugs/spotbugs-gradle-plugin
Sources: https://github.com/spotbugs/spotbugs-gradle-plugin
Version 6.0.26 (latest)
6.0.26
Created 01 November 2024.
A base Gradle plugin that runs static bytecode analysis by SpotBugs
Using the plugins DSL:
plugins {
id("com.github.spotbugs-base") version "6.0.26"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.spotbugs.snom:spotbugs-gradle-plugin:6.0.26")
}
}
apply(plugin = "com.github.spotbugs-base")
Using the plugins DSL:
plugins {
id "com.github.spotbugs-base" version "6.0.26"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.spotbugs.snom:spotbugs-gradle-plugin:6.0.26"
}
}
apply plugin: "com.github.spotbugs-base"