org.owasp.dependencycheck
                  Owner:
                  
                    
                    Jeremy Long
                  
                
OWASP dependency-check-gradle plugin.
http://dependency-check.github.io/DependencyCheck/dependency-check-gradle/index.html
Sources: https://github.com/dependency-check/DependencyCheck
Version 7.3.2
Created 18 November 2022.
                A software composition analysis plugin that identifies known vulnerable dependencies used by the project.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("org.owasp.dependencycheck") version "7.3.2"
}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("org.owasp.dependencycheck:org.owasp.dependencycheck.gradle.plugin:7.3.2") }It can then be applied in the precompiled script plugin:plugins { id("org.owasp.dependencycheck") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.owasp.dependencycheck:org.owasp.dependencycheck.gradle.plugin:7.3.2") } } apply(plugin = "org.owasp.dependencycheck")
- Applying plugins to all subprojects .