I开发者_StackOverflow社区'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?
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.
As an alternative to using the Leiningen plugin, which is a good bet, you can always search the default Leiningen repository, Clojars.
I can also recommend lein-ancient
, available here on clojars.
(Some of the other answers are rather old.)
精彩评论