How could one view the dependency tree (along with the transitive dependencies) and the reasoning for them being included, or excluded from the build?
In Maven one can do it like:
mvn dependency:tree -Ddebug
From what I understand, Ivy can produce dependency reports in an XML/HTML format, but it doesn't seem to be the same. (Correct me, if I am wrong).
Also, is this kind of thing available from the standalone Ivy (not being invoked from within an Ant context)?
Thanks!