In Eclipse, when I go to the Maven dependency hierarchy page, I get an output that says which conflicts caused the versions:

However, if I use dependency: tree , this is omitted, and I see only used evrsions:
| +- commons-httpclient:commons-httpclient:jar:3.1:compile | +- commons-codec:commons-codec:jar:1.4:compile | +- commons-io:commons-io:jar:2.4:compile | +- commons-net:commons-net:jar:3.1:compile | +- javax.servlet:servlet-api:jar:2.5:compile
And later on actually referencing versions ...
+- commons-collections:commons-collections:jar:3.1:compile
Is there a way to get the dependency: a tree for outputting versions omitted for conflict?
Thanks!
source share