leiningen

N.B. The maintainers are on #leiningen on Libera chat IRC. Go there for direct support/bug reports.
2019-06-18T02:11:57.021500Z

ok i figured it out. lein-nvd sets the version of its nvd-clojure dep dynamically and defaults to the maven special keyword "RELEASE" which always gets the latest

2019-06-18T02:12:22.022100Z

i would still be interested to know if there is a way to ask lein to print out what dependencies a plugin is going to pull in

2019-06-18T03:14:30.022800Z

@nickmbailey lein deps :plugin-tree

2019-06-18T03:15:04.023200Z

https://github.com/technomancy/leiningen/blob/2.9.1/src/leiningen/deps.clj#L107 See these doc strings for more details.

2019-06-18T03:21:26.023600Z

thanks!