updated documentation

This commit is contained in:
Jeremy Long
2015-11-28 08:14:00 -05:00
parent e05cef6886
commit 5c8b374352
4 changed files with 81 additions and 89 deletions

View File

@@ -0,0 +1,34 @@
Tasks
====================
Task | Description
----------------------------------------------------|-----------------------
[dependencyCheck](configuration.html) | 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 | Deletes the local copy of the NVD. This is used to force a refresh of the data.
Configuration: dependencyCheckPurge
====================
#### Example
```groovy
dependencyCheckPurge {
}
```
### Advanced Configuration
The following properties can be configured in the dependencyCheckPurge task. However, they are less frequently changed.
Config Group | Property | Description | Default Value
-------------|-------------------|---------------------------------------------------------------------------------------------|------------------
data | directory | Sets the data directory to hold SQL CVEs contents. This should generally not be changed. |  
$H$H$H$H Example
```groovy
dependencyCheckPurge {
data {
directory='d:/nvd'
}
}
```