Liking cljdoc? Tell your friends :D

Antq with Clojure 1.7.0 or earlier

As described, antq does not support Clojure 1.7.0 or earlier. If you’d like to use, please follow the steps below.

Clojure CLI Tool

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.

Leiningen

Add a profile and alias to your project’s project.clj instead of $HOME/.lein/profiles.clj.

(defproject ...
  :dependencies [[org.clojure/clojure "1.7.0"]]

  :profiles
  {:outdated {:dependencies [[org.clojure/clojure "1.10.1"] ;; use 1.8.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 is a website building & hosting documentation for Clojure/Script libraries

× close