Approval confirmation
Approval confirmation
Delete plugin confirmation
To confirm the plugin deletion insert pluginId and author name
Jeremy Long
org.owasp.dependencycheck
PluginId
Author
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 1.3.6
1.3.6
Created 10 April 2016.
OWASP dependency-check-gradle plugin.
Other versions
- 12.1.8
- 12.1.7
- 12.1.6
- 12.1.5
- 12.1.3
- 12.1.2
- 12.1.1
- 12.1.0
- 12.0.2
- 12.0.1
- 12.0.0
- 11.1.1
- 11.1.0
- 11.0.0
- 10.0.4
- 10.0.3
- 10.0.2
- 10.0.1
- 10.0.0
- 9.2.0
- 9.1.0
- 9.0.10
- 9.0.9
- 9.0.8
- 9.0.7
- 9.0.6
- 9.0.5
- 9.0.4
- 9.0.3
- 9.0.2
- 9.0.1
- 9.0.0
- 8.4.3
- 8.4.2
- 8.4.1
- 8.4.0
- 8.3.1
- 8.2.1
- 8.2.0
- 8.1.2
- 8.1.1
- 8.1.0
- 8.0.2
- 8.0.1
- 8.0.0
- 7.4.4
- 7.4.3
- 7.4.2
- 7.4.1
- 7.4.0
- 7.3.2
- 7.3.0
- 7.2.1
- 7.2.0
- 7.1.2
- 7.1.1
- 7.1.0.1
- 7.0.4.1
- 7.0.3
- 7.0.2
- 7.0.1
- 7.0.0
- 6.5.3
- 6.5.2.1
- 6.5.2
- 6.5.1
- 6.5.0.1
- 6.4.1.1
- 6.4.1
- 6.3.2
- 6.3.1
- 6.3.0
- 6.2.2
- 6.2.1
- 6.2.0
- 6.1.6
- 6.1.5
- 6.1.4
- 6.1.3
- 6.1.2
- 6.1.1
- 6.1.0
- 6.0.5
- 6.0.4
- 6.0.3
- 6.0.2
- 6.0.1
- 6.0.0.1
- 6.0.0
- 5.3.2.1
- 5.3.2
- 5.3.1
- 5.3.0
- 5.2.4
- 5.2.3
- 5.2.2
- 5.2.1
- 5.2.0
- 5.1.1
- 5.1.0
- 5.0.0
- 5.0.0-M3.1
- 5.0.0-M3
- 5.0.0-M2
- 5.0.0-M1
- 4.0.2
- 4.0.1
- 4.0.0.1
- 4.0.0
- 3.3.4
- 3.3.2
- 3.3.1
- 3.3.0
- 3.2.1
- 3.2.0
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.2
- 3.0.1
- 3.0.0
- 2.1.1
- 2.1.0
- 2.0.1
- 2.0.0
- 1.4.5.1
- 1.4.5
- 1.4.4.1
- 1.4.4
- 1.4.3
- 1.4.2
- 1.4.1
- 1.4.0
- 1.3.5
- 1.3.4
- 1.3.3
- 1.3.2.1
Add this plugin to your build using the plugins DSL:
plugins {
id("org.owasp.dependencycheck") version "1.3.6"
}
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:1.3.6") }
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:1.3.6") } } apply(plugin = "org.owasp.dependencycheck")
- Applying plugins to all subprojects .