org.owasp.dependencycheck
Owner: Jeremy Long
OWASP dependency-check-gradle plugin.
http://jeremylong.github.io/DependencyCheck/dependency-check-gradle/index.html
Sources: git@github.com:jeremylong/dependency-check-gradle.git
Version 11.1.1 (latest)
Created 04 December 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 "11.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("org.owasp.dependencycheck:org.owasp.dependencycheck.gradle.plugin:11.1.1") }
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:11.1.1") } } apply(plugin = "org.owasp.dependencycheck")
- Applying plugins to all subprojects .