{
:outdated
{:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"} ;; use 1.8.0 or later only for antq
com.github.liquidz/antq {:mvn/version "RELEASE"}}
:main-opts ["-m" "antq.core"]}
}
As described, antq does not support Clojure 1.8.0 or earlier. If you’d like to use, please follow the steps below.
antq 0.16.3 or earlier partially supports Clojure 1.8.0.
So if you were using antq with Clojure 1.8.0, please consider to use antq 0.16.3 or follow steps below.
Add the following alias to your project’s deps.edn
instead of $HOME/.clojure/deps.edn
.
{
:outdated
{:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"} ;; use 1.8.0 or later only for antq
com.github.liquidz/antq {:mvn/version "RELEASE"}}
:main-opts ["-m" "antq.core"]}
}
Then, run clojure -M:outdated
.
Add a profile and alias to your project’s project.clj
instead of $HOME/.lein/profiles.clj
.
(defproject ...
:dependencies [[org.clojure/clojure "1.8.0"]]
:profiles
{:outdated {:dependencies [[org.clojure/clojure "1.10.1"] ;; use 1.9.0 or later only for antq
[com.github.liquidz/antq "RELEASE"]]}}
:aliases
{"outdated" ["with-profile" "outdated" "run" "-m" "antq.core"]})
Then, run lein outdated
.
Can you improve this documentation?Edit on GitHub
cljdoc builds & hosts documentation for Clojure/Script libraries
Ctrl+k | Jump to recent docs |
← | Move to previous article |
→ | Move to next article |
Ctrl+/ | Jump to the search field |