You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by el...@apache.org on 2020/03/01 14:17:45 UTC

[maven-dependency-plugin] branch master updated: doc - Add note on dependecy:tree -Dverbose support in 3.0+

This is an automated email from the ASF dual-hosted git repository.

elharo 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 23ce086  doc - Add note on dependecy:tree -Dverbose support in 3.0+
     new 2284376  Merge pull request #4 from grimsa/patch-1
23ce086 is described below

commit 23ce0867411688b382c6638a26c6817f6553a4fe
Author: Gediminas Rimša <ge...@gmail.com>
AuthorDate: Mon Sep 10 17:30:54 2018 +0300

    doc - Add note on dependecy:tree -Dverbose support in 3.0+
---
 .../examples/resolving-conflicts-using-the-dependency-tree.apt   | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/src/site/apt/examples/resolving-conflicts-using-the-dependency-tree.apt b/src/site/apt/examples/resolving-conflicts-using-the-dependency-tree.apt
index 8231490..6e1c5e5 100644
--- a/src/site/apt/examples/resolving-conflicts-using-the-dependency-tree.apt
+++ b/src/site/apt/examples/resolving-conflicts-using-the-dependency-tree.apt
@@ -53,3 +53,12 @@ mvn dependency:tree -Dverbose -Dincludes=commons-collections
 
   More specifically, in verbose mode the dependency tree shows dependencies that were omitted for: being a duplicate
   of another; conflicting with another's version and/or scope; and introducing a cycle into the dependency tree.
+
+* Verbose flag support in 3.0+ version
+
+  Support for <<<verbose>>> flag has been removed since maven-dependency-plugin 3.0 ({{{https://issues.apache.org/jira/browse/MDEP-494}MDEP-494}}).
+  Extra output can be obtained by using an older version until proper support is reintroduced.
+
++---+
+mvn org.apache.maven.plugins:maven-dependency-plugin:2.10:tree -Dverbose=true
++---+