jp.skypencil.spotbugs.snom
                  Owner:
                  
                    
                    Kengo TODA
                  
                
A 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.1.1
Created 31 December 2019.
                A 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") version "0.1.1"
}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:jp.skypencil.spotbugs.snom.gradle.plugin:0.1.1") }It can then be applied in the precompiled script plugin:plugins { id("jp.skypencil.spotbugs.snom") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("jp.skypencil.spotbugs.snom:jp.skypencil.spotbugs.snom.gradle.plugin:0.1.1") } } apply(plugin = "jp.skypencil.spotbugs.snom")
- Applying plugins to all subprojects .