This is an automated email from the ASF dual-hosted git repository.
mthmulders pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git
The following commit(s) were added to refs/heads/master by this push:
new 0e70a4f Correct typo for depencency:tree -DoutputFile
new fa27b68 Merge pull request #107 from twillouer/patch-1
0e70a4f is described below
commit 0e70a4f4b6c71e2f8ebb144f508026307764b929
Author: William Delanoue <[email protected]>
AuthorDate: Sun Sep 27 08:55:52 2020 +0200
Correct typo for depencency:tree -DoutputFile
Little typo in dependency:tree who handle the parameter outputFile instead
of output
---
src/site/apt/usage.apt.vm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/site/apt/usage.apt.vm b/src/site/apt/usage.apt.vm
index bc6d43c..a67381c 100644
--- a/src/site/apt/usage.apt.vm
+++ b/src/site/apt/usage.apt.vm
@@ -600,7 +600,7 @@ mvn dependency:tree
Optionally, the <<<output>>> parameter can be specified to divert the output
to a file:
+-----+
-mvn dependency:tree -Doutput=/path/to/file
+mvn dependency:tree -DoutputFile=/path/to/file
+-----+
Also, the <<<outputType>>> parameter can be used to generate different
formats of output. The
@@ -617,7 +617,7 @@ mvn dependency:tree -Doutput=/path/to/file
[]
+-----+
-mvn dependency:tree -Doutput=/path/to/file.graphml -DoutputType=graphml
+mvn dependency:tree -DoutputFile=/path/to/file.graphml -DoutputType=graphml
+-----+