One of my project.clj's :dependencies is dependent on the monolithic clojure-contrib-1.1.0.jar, but I can't guess which one is downloading it. Short of incrementally commenting out each one, how can I discover which of them is responsible ?
Asked
Active
Viewed 2,489 times
2 Answers
9
I'm not sure if there's a more Clojure-y solution, but you can run lein pom
to generate a Maven POM, and then run mvn dependency:tree
to display a tree of the projects dependencies.

Hugh
- 8,872
- 2
- 37
- 42
-
3Nope, this is the best you can do in Clojure at the moment. – amalloy Apr 02 '12 at 00:35
-
8At present, the better answer is to use `lein deps :tree` (an answer on this page: http://stackoverflow.com/a/9971247/109618) – David J. Mar 24 '14 at 20:35