Clojure projects invariably build on resources published under Maven and in git repositories. Tools like the Clojure CLI and Leiningen use configuration files to declare where these dependencies are located, and what versions are being referenced.
- Your project brings in dependencies for all the functionality support you need
- Find resources that will provide the functionality you need
- Options:
- Under Clojure CLI - Edit the
:depssection of yourdeps.edn - Under Leiningen
- Edit the
:dependenciessection of yourproject.clj
- Edit the
- Under Clojure CLI - Edit the
- Options:
- under Clojure CLI:
clojure -X:deps tree
- under Leiningen:
lein deps tree
- under Clojure CLI: