daaku
daaku

Reputation: 2807

List available updates for dependencies listed in project.clj

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

Answers (3)

Peter Hull
Peter Hull

Reputation: 7067

I can also recommend lein-ancient, available here on clojars. (Some of the other answers are rather old.)

Upvotes: 0

Isaac
Isaac

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

Matthew Maravillas
Matthew Maravillas

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

Related Questions