I'm using lein to manage my project, and I have a number of :dependencies
as well as :dev-dependencies
. Is there a way to find out if there are updates available for these dependencies?
views:
78answers:
2
+5
A:
I haven't tried it myself, but there is Licenser's lein-search plugin, which has:
lein update (updates all artifacts in your deps, asking for each one if you'd like it)
Matthew Maravillas
2010-08-07 17:24:25
Thanks Matthew. The one you linked to didn't work out of the box with Clojure 1.2-RC1, but I found a more up to date version [here](http://github.com/luskwater/lein-search) which worked great.
daaku
2010-08-08 05:15:33
Since seeing this answer, I've been hacking on lein-search too: you can check out my fork here: http://github.com/purcell/lein-search (clojars: org.clojars.sanityinc/lein-search 0.3.0-SNAPSHOT)
sanityinc
2010-08-08 14:17:11
+1
A:
As an alternative to using the Leiningen plugin, which is a good bet, you can always search the default Leiningen repository, Clojars.
Isaac Hodes
2010-08-07 20:21:05