for automating Clojure projects without setting your hair on fire
Leiningen is the easiest way to use Clojure. With a focus on project automation and declarative configuration, it gets out of your way and lets you focus on your code.
Install Leiningen with
your
package manager; for example sudo apt
install leiningen
(defproject leiningen.org "1.0.0" :description "Generate site for https://leiningen.org" :dependencies [[enlive "1.0.1"] [cheshire "4.0.0"] [org.markdownj/markdownj "0.3.0"]] :main leiningen.web)
The tutorial is the best place to start. If you have Leiningen installed, you can read the tutorial by running lein help tutorial. It does not cover learning the language itself.
Running lein help faq will get you the FAQ. Documentation for each individual task is available via lein help $TASK. You can also see the sample project.clj file containing a reference of most project settings by running lein help sample.
More: profiles | deploying libraries | writing plugins | plugin list
Discussion occurs primarily in the #leiningen channel on Libera.Chat.
Issues should be reported on the issue tracker.