From 921efc4d2bf6edeead1e122cc0b88283d1e9e8ec Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Mon, 30 Nov 2015 06:50:15 -0500 Subject: [PATCH] updated documentation --- src/site/markdown/dependency-check-gradle/index.md.vm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/site/markdown/dependency-check-gradle/index.md.vm b/src/site/markdown/dependency-check-gradle/index.md.vm index 1653d3e88..0556bedc6 100644 --- a/src/site/markdown/dependency-check-gradle/index.md.vm +++ b/src/site/markdown/dependency-check-gradle/index.md.vm @@ -12,6 +12,8 @@ seven days the update will only take a few seconds. #set( $H = '#' ) +$H$H Quick Start + $H$H$H Step 1, Apply dependency-check-gradle plugin Install from Maven central repo @@ -25,7 +27,7 @@ buildscript { } } -apply plugin: 'dependencyCheck' +apply plugin: 'org.owasp.dependencycheck' ``` $H$H$H Step 2, Run the dependencyCheck task @@ -36,9 +38,14 @@ Once gradle plugin applied, run following gradle task to check dependencies: gradle dependencyCheck --info ``` -The reports will be generated automatically under `buildDir/reports` folder. +The reports will be generated automatically under `build/reports` folder. +$H$H Task Configuration +The OWASP dependency-check-gradle plugin contains three tasks: [dependencyCheck](configuration.html), +[dependencyCheckUpdate](configuration-update.html), and [dependencyCheckPurge](configuration-purge.html). +Please see each tasks configuration page for more information. + Mailing List ------------