io.beekeeper.gradle.plugins.security
                  Owner:
                  
                    
                    Beekeeper
                  
                
Ensures that there are no security problems with the code base
https://github.com/beekpr/beekeeper-gradle-plugins/blob/master/README.md
Sources: https://github.com/beekpr/beekeeper-gradle-plugins/
Version 0.13.0
Created 13 October 2022.
                Ensures that there are no security problems with the code base.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("io.beekeeper.gradle.plugins.security") version "0.13.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("io.beekeeper.gradle.plugins.security:io.beekeeper.gradle.plugins.security.gradle.plugin:0.13.0") }It can then be applied in the precompiled script plugin:plugins { id("io.beekeeper.gradle.plugins.security") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.beekeeper.gradle.plugins.security:io.beekeeper.gradle.plugins.security.gradle.plugin:0.13.0") } } apply(plugin = "io.beekeeper.gradle.plugins.security")
- Applying plugins to all subprojects .