updated documentation per issue #782

This commit is contained in:
Jeremy Long
2017-07-03 08:04:54 -04:00
parent 6e2b82c446
commit 305db5f8b1
5 changed files with 60 additions and 18 deletions

View File

@@ -3,13 +3,26 @@ Tasks
Task | Description
---------------------------------------------------|-----------------------
dependencyCheck | Runs dependency-check against the project and generates a report.
dependencyCheckAnalyze | Runs dependency-check against the project and generates a report.
[dependencyCheckUpdate](configuration-update.html) | Updates the local cache of the NVD data from NIST.
[dependencyCheckPurge](configuration-purge.html) | Deletes the local copy of the NVD. This is used to force a refresh of the data.
Configuration: dependencyCheck
Configuration:
====================
The following properties can be configured for the dependencyCheck task:
```groovy
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.owasp:dependency-check-gradle:${project.version}'
}
}
apply plugin: 'org.owasp.dependencycheck'
check.dependsOn dependencyCheckAnalyze
```
Property | Description | Default Value
---------------------|------------------------------------|------------------