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 5.2.0
Created 21 July 2019.
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 "5.2.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("org.owasp.dependencycheck:org.owasp.dependencycheck.gradle.plugin:5.2.0") }
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:5.2.0") } } apply(plugin = "org.owasp.dependencycheck")
- Applying plugins to all subprojects .