1
0
Fork
You've already forked leiningen
0
forked from leiningen/leiningen
Project automation for Clojure
  • Clojure 87.1%
  • Shell 4.2%
  • HTML 2.5%
  • CSS 2.1%
  • Batchfile 2.1%
  • Other 1.9%
2024年10月23日 16:47:42 +00:00
.circleci Port CI config to JSON instead of YAML. 2023年11月03日 11:22:48 -07:00
.github/ISSUE_TEMPLATE Update bug_report.md 2019年02月25日 10:17:30 +13:00
bin Stop overriding Maven wagon timeout setting. 2024年09月13日 15:18:08 -07:00
doc Stop overriding Maven wagon timeout setting. 2024年09月13日 15:18:08 -07:00
lein-pprint chore: change non-local links to https 2024年08月13日 12:57:49 +02:00
leiningen-core Fix test that was broken by unrelated https url change. 2024年09月16日 23:34:16 +00:00
resources chore: change non-local links to https 2024年08月13日 12:57:49 +02:00
src/leiningen Pull in a fixed parsley version in the repl task to avoid warnings. 2024年09月16日 23:36:19 +00:00
test chore: change non-local links to https 2024年08月13日 12:57:49 +02:00
test_projects chore: change non-local links to https 2024年08月13日 12:57:49 +02:00
web Stop using <tt> elements and name attributes in HTML pages. 2024年09月11日 09:28:34 -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
.woodpecker.yml Fix missing delimiters in woodpecker config. 2024年09月16日 16:40:53 -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 chore: change non-local links to https 2024年08月13日 12:57:49 +02:00
pcmpl-lein.el chore: change non-local links to https 2024年08月13日 12:57:49 +02:00
project.clj Update nREPL version to 1.3 2024年10月23日 08:35:00 +00:00
README.md chore: change non-local links to https 2024年08月13日 12:57:49 +02:00
sample.project.clj chore: change non-local links to https 2024年08月13日 12:57:49 +02:00
zsh_completion.zsh Check if in a lein project before ns completion 2014年08月18日 13:26:53 -05:00

Leiningen

status-badge

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 but we maintain a mirror on GitHub for the time being in order to ease the transition. 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-2022 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.