21

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 ?

Hendekagon
  • 4,565
  • 2
  • 28
  • 43

2 Answers2

40

This is available in leiningen now as lein deps :tree

See here for an example

sw1nn
  • 7,278
  • 1
  • 26
  • 36
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