Project automation for Clojure
Find a file
Phil Hagelberg 62368da9a7
All checks were successful
builds.sr.ht Job completed
Reintroduce explicit dependency on commons-lang3.
We use this directly in the uberjar task, so we should have it listed
as a direct dependency.
2025-11-12 08:38:44 -08:00
.circleci Remove openjdk 8 from CI config. 2025-08-15 13:08:45 -07:00
.github We moved off github now. 2025-10-26 12:28:48 -07:00
bin Bump version to 2.12.1-SNAPSHOT. 2025-09-12 10:20:14 -07:00
doc Don't need to mention GPG v1 any more. 2025-10-26 12:10:03 -07:00
lein-pprint chore: change non-local links to https 2024-08-13 12:57:49 +02:00
leiningen-core Reintroduce explicit dependency on commons-lang3. 2025-11-12 08:38:44 -08:00
resources Reintroduce explicit dependency on commons-lang3. 2025-11-12 08:38:44 -08:00
src/leiningen Reintroduce explicit dependency on commons-lang3. 2025-11-12 08:38:44 -08:00
test Add plugin-tree-data command to output plugin tree dependency as edn (analogous to tree-data) 2025-01-30 09:14:10 -08:00
test_projects chore: change non-local links to https 2024-08-13 12:57:49 +02:00
web We moved off github now. 2025-10-26 12:28:48 -07:00
.build.yml Fix CI badge. 2025-05-20 14:04:05 -07:00
.gitattributes Added .gitattributes to avoid autocrlf for bat files 2010-12-31 22:22:56 -08:00
.gitignore Publish markdown documentation on leiningen.org. 2023-06-30 10:09:45 -07:00
bash_completion.bash Remove 'swank' and add missing commands to bash completion. 2016-06-03 12:06:39 -07:00
CONTRIBUTING.md Describe maven-based bootstrap in contributing guide. 2024-06-03 09:26:24 -07:00
COPYING chore: change non-local links to https 2024-08-13 12:57:49 +02:00
NEWS.md Bump version to 2.12.1-SNAPSHOT. 2025-09-12 10:20:14 -07:00
pcmpl-lein.el chore: change non-local links to https 2024-08-13 12:57:49 +02:00
project.clj Reintroduce explicit dependency on commons-lang3. 2025-11-12 08:38:44 -08:00
README.md We moved off github now. 2025-10-26 12:28:48 -07:00
sample.project.clj Clarify JVM_OPTS vs LEIN_JVM_OPTS. 2025-11-12 07:28:33 -08:00
zsh_completion.zsh Check if in a lein project before ns completion 2014-08-18 13:26:53 -05:00

Leiningen

builds.sr.ht status

Leiningen logo

"Leiningen!" he shouted. "You're insane! They're not creatures you can fight—they're an elemental—an 'act of God!' Ten miles long, two miles wide—ants, nothing but ants! And every single one of them a fiend from hell..."

Leiningen is for automating Clojure projects without setting your hair on fire.

Note: the canonical repository for Leiningen is on Codeberg. Please update your links and git remotes.

Installation

If your preferred package manager offers a recent version of Leiningen, try that first.

Leiningen installs itself on the first run of the lein shell script; there is no separate install script. Follow these instructions to install Leiningen manually:

  1. Make sure you have Java installed; OpenJDK is recommended
  2. Download the lein script from the stable branch of this project
  3. Place it on your $PATH (/usr/local/bin for example)
  4. Set it to be executable. (sudo chmod +x /usr/local/bin/lein)
  5. Run it.

Windows users can use the above script in the Linux subsystem or try the batch file or PowerShell version instead.

Basic Usage

The tutorial has a detailed walk-through of the steps involved in creating a new project, but here are the commonly-used tasks:

$ lein new [TEMPLATE] NAME # generate a new project skeleton
$ lein test [TESTS] # run the tests in the TESTS namespaces, or all tests
$ lein repl # launch an interactive REPL session
$ lein run -m my.namespace # run the -main function of a namespace
$ lein uberjar # package the project and dependencies as standalone jar
$ lein deploy clojars # publish the project to Clojars as a library

Use lein help to see a complete list. lein help $TASK shows the usage for a specific task.

You can also chain tasks together in a single command by using the do task with comma-separated tasks:

$ lein do clean, test foo.test-core, jar

Most tasks need to be run from somewhere inside a project directory to work, but some (new, help, search, version, and repl) may run from anywhere.

Configuration

The project.clj file in the project root should look like this:

(defproject myproject "0.5.0-SNAPSHOT"
  :description "A project for doing things."
  :license "Eclipse Public License 1.0"
  :url "https://codelab.org/technomancy/myproject"
  :dependencies [[org.clojure/clojure "1.8.0"]]
  :plugins [[lein-tar "3.2.0"]])

The lein new task generates a project skeleton with an appropriate starting point from which you can work. See the sample.project.clj file (also available via lein help sample) for a detailed listing of configuration options.

The project.clj file can be customized further with the use of profiles.

Documentation

Leiningen documentation is organized as a number of guides:

Usage

Development

Plugins

Leiningen supports plugins which may introduce new tasks. See the plugins wiki page for a full list. If a plugin is needed for successful test or build runs, (such as lein-tar) then it should be added to :plugins in project.clj, but if it's for your own convenience (such as lein-pprint) then it should be added to the :plugins list in the :user profile in ~/.lein/profiles.clj. See the profiles guide for details on how to add to your :user profile. The plugin guide explains how to write plugins.

License

Source Copyright © 2009-2025 Phil Hagelberg, Alex Osborne, Dan Larkin, and contributors. Distributed under the Eclipse Public License, the same as Clojure uses. See the file COPYING.

Thanks to Stuart Halloway for Lancet and Tim Dysinger for convincing me that good builds are important.

Images Copyright © 2010 Phil Hagelberg. Distributed under the Creative Commons Attribution + ShareAlike License 4.0. Full-size version available.