org.myire.quill.spotbugs
Owner:
Peter Franzen
Configuration of and additional functionality for the SpotBugs Gradle plugin
https://github.com/handmadecode/quill
Sources: https://github.com/handmadecode/quill
Version 3.2 (latest)
Created 20 January 2022.
Configuration of and additional functionality for the SpotBugs Gradle plugin
Using the plugins DSL:
plugins {
id("org.myire.quill.spotbugs") version "3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.myire:quill:3.2")
}
}
apply(plugin = "org.myire.quill.spotbugs")
Using the plugins DSL:
plugins {
id "org.myire.quill.spotbugs" version "3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.myire:quill:3.2"
}
}
apply plugin: "org.myire.quill.spotbugs"