문제

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 ?

도움이 되었습니까?

해결책

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.

다른 팁

This is available in leiningen now as lein deps :tree

See here for an example

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top