Reputation: 2807
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?
Upvotes: 4
Views: 465
Reputation: 7067
I can also recommend lein-ancient
, available here on clojars.
(Some of the other answers are rather old.)
Upvotes: 0
Reputation: 16372
As an alternative to using the Leiningen plugin, which is a good bet, you can always search the default Leiningen repository, Clojars.
Upvotes: 1
Reputation: 3182
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.
Upvotes: 4