Antq does not support Clojure 1.10.0 or earlier. You can still use antq on these older projects; follow the steps below.
Use :deps
, not :extra-deps
.
This will use the default Clojure cli version, instead of the older Clojure version on which your project depends.
Tip
|
This assumes your installed Clojure cli version is 1.10 or later. |
{:aliases {:outdated {:deps {com.github.liquidz/antq {:mvn/version "RELEASE"}}
:main-opts ["-m" "antq.core"]}}}
If you must use :extra-deps
, add an antq supported version of Clojure explicitly in an alias that uses antq as follows.
{:aliases {:outdated {:extra-deps {;; Use 1.8.0 or later only for antq
org.clojure/clojure {:mvn/version "1.11.1"}
com.github.liquidz/antq {:mvn/version "RELEASE"}}
:main-opts ["-m" "antq.core"]}}}
Then, run clojure -M:outdated
.