From ee77fccffdb23b8d8a44a2d79d2d92bd63633418 Mon Sep 17 00:00:00 2001 From: Erik Erikson Date: Tue, 3 May 2016 10:31:00 -0700 Subject: [PATCH] Align documentation with current project name specification flag When using the "--app" flag, the following warning is produced: [WARN] The 'app' argument should no longer be used; use 'project' instead. This change updates the documentation from suggesting "--app" to "--project" --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d80df5c5f..d2f2eb4be 100644 --- a/README.md +++ b/README.md @@ -22,18 +22,18 @@ The latest CLI can be downloaded from bintray's On *nix ``` $ ./bin/dependency-check.sh -h -$ ./bin/dependency-check.sh --app Testing --out . --scan [path to jar files to be scanned] +$ ./bin/dependency-check.sh --project Testing --out . --scan [path to jar files to be scanned] ``` On Windows ``` > bin/dependency-check.bat -h -> bin/dependency-check.bat --app Testing --out . --scan [path to jar files to be scanned] +> bin/dependency-check.bat --project Testing --out . --scan [path to jar files to be scanned] ``` On Mac with [Homebrew](http://brew.sh) ``` $ brew update && brew install dependency-check $ dependency-check -h -$ dependency-check --app Testing --out . --scan [path to jar files to be scanned] +$ dependency-check --project Testing --out . --scan [path to jar files to be scanned] ``` ### Maven Plugin @@ -85,13 +85,13 @@ On *nix ``` $ mvn install $ ./dependency-check-cli/target/release/bin/dependency-check.sh -h -$ ./dependency-check-cli/target/release/bin/dependency-check.sh --app Testing --out . --scan ./src/test/resources +$ ./dependency-check-cli/target/release/bin/dependency-check.sh --project Testing --out . --scan ./src/test/resources ``` On Windows ``` > mvn install > dependency-check-cli/target/release/bin/dependency-check.bat -h -> dependency-check-cli/target/release/bin/dependency-check.bat --app Testing --out . --scan ./src/test/resources +> dependency-check-cli/target/release/bin/dependency-check.bat --project Testing --out . --scan ./src/test/resources ``` Then load the resulting 'DependencyCheck-Report.html' into your favorite browser.