views:

78

answers:

2

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?

+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)

It's at http://github.com/Licenser/lein-search.

Matthew Maravillas
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
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
+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