I understand that lein deps :tree
displays a dependency tree of all the project dependencies (implicit and explicit). However, "each dependency is only shown once within a tree." I'd really like to see a tree where this wasn't the case, and that if libraries A
and B
require library X
, library X
shows up under both A
and B
.
Does anyone know how to do this with lein
or some other tool?
tools.deps
(which I'm now using) answer, but unfortunately, this doesn't answer the question. As withlein deps :tree
,clj -Stree
only prints each dep once, and so it's not as useful for determining where there might be a dependency conflict. – Rondo