com.github.spotbugs.temporary
Owner: Jonathan Leitschuh
Performs quality checks on your project's Java source files using SpotBugs and generates reports from these checks. This is a temporary release to support a fix for Gradle 4.10.
Sources: https://github.com/spotbugs/spotbugs-gradle-plugin
Version 1.6.4 (latest)
1.6.4
Created 07 September 2018.
Performs quality checks on your project's Java source files using SpotBugs and generates reports from these checks. This is a temporary release to support a fix for Gradle 4.10.
Using the plugins DSL:
plugins {
id("com.github.spotbugs.temporary") version "1.6.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.spotbugs.temporary:spotbugs-gradle-plugin:1.6.4")
}
}
apply(plugin = "com.github.spotbugs.temporary")
Using the plugins DSL:
plugins {
id "com.github.spotbugs.temporary" version "1.6.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.spotbugs.temporary:spotbugs-gradle-plugin:1.6.4"
}
}
apply plugin: "com.github.spotbugs.temporary"