jp.skypencil.spotbugs.snom-base
                  Owner:
                  
                    
                    Kengo TODA
                  
                
A base Gradle plugin that runs static bytecode analysis by SpotBugs
https://github.com/KengoTODA/spotbugs-gradle-plugin-v2
Sources: https://github.com/KengoTODA/spotbugs-gradle-plugin-v2
Version 0.5.0
Created 19 February 2020.
                A base Gradle plugin that runs static bytecode analysis by SpotBugs
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("jp.skypencil.spotbugs.snom-base") version "0.5.0"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("jp.skypencil.spotbugs.snom-base:jp.skypencil.spotbugs.snom-base.gradle.plugin:0.5.0") }It can then be applied in the precompiled script plugin:plugins { id("jp.skypencil.spotbugs.snom-base") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("jp.skypencil.spotbugs.snom-base:jp.skypencil.spotbugs.snom-base.gradle.plugin:0.5.0") } } apply(plugin = "jp.skypencil.spotbugs.snom-base")
- Applying plugins to all subprojects .