From 94b272dbae447fe4b24f705866a330050fba268b Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Sun, 14 Aug 2016 11:10:38 +0200 Subject: [PATCH] document skipConfigurations and scanConfigurations closes jeremylong/dependency-check-gradle/#12 --- src/site/markdown/dependency-check-gradle/configuration.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/site/markdown/dependency-check-gradle/configuration.md b/src/site/markdown/dependency-check-gradle/configuration.md index 02dd93284..25a0c83aa 100644 --- a/src/site/markdown/dependency-check-gradle/configuration.md +++ b/src/site/markdown/dependency-check-gradle/configuration.md @@ -20,6 +20,8 @@ format | The report format to be generated (HTML, XML, VULN, ALL). outputDirectory | The location to write the report(s). This directory will be located in the build directory. | build/reports skipTestGroups | When set to true (the default) all dependency groups that being with 'test' will be skipped. | true suppressionFile | The file path to the XML suppression file \- used to suppress [false positives](../general/suppression.html) |   +skipConfigurations | A list of configurations that will be skipped. This is mutually exclusive with the scanConfigurations property. | `[]` which means no configuration is skipped. +scanConfigurations | A list of configurations that will be scanned, all other configurations are skipped. This is mutually exclusive with the skipConfigurations property. | `[]` which implicitly means all configurations get scanned. #### Example ```groovy