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 10.0.4
Created 01 September 2024.
                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 "10.0.4"
}
              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:10.0.4") }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:10.0.4") } } apply(plugin = "org.owasp.dependencycheck") - Applying plugins to all subprojects .