leiningen/README.md

277 lines
12 KiB
Markdown
Raw Normal View History

2009-10-31 21:35:25 +00:00
# Leiningen
<img src="https://github.com/downloads/technomancy/leiningen/leiningen-banner.png"
alt="Leiningen logo" title="The man himself" align="right" />
2012-01-13 00:10:32 +00:00
2009-11-12 05:25:16 +00:00
> "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
2009-12-21 04:37:19 +00:00
> fiend from hell..."
2009-11-12 05:25:16 +00:00
> -- from Leiningen Versus the Ants by Carl Stephenson
2009-10-31 21:35:25 +00:00
Leiningen is for automating Clojure projects without setting your hair on fire.
2009-10-31 21:35:25 +00:00
2009-11-12 05:25:16 +00:00
## Installation
2012-01-24 03:06:29 +00:00
If your preferred
[package manager](https://github.com/technomancy/leiningen/wiki/Packaging)
has a relatively recent version of Leiningen, try that first.
Otherwise you can install by hand:
Leiningen bootstraps itself using the `lein` shell script;
there is no separate install script. It installs its dependencies
2010-09-10 17:02:26 +00:00
upon the first run on unix, so the first run will take longer.
2011-09-24 22:40:26 +00:00
1. [Download the script](https://raw.github.com/technomancy/leiningen/stable/bin/lein).
2. Place it on your path. (I like to use `~/bin`)
3. Set it to be executable. (`chmod 755 ~/bin/lein`)
2010-09-10 17:02:26 +00:00
On Windows most users can get
[the batch file](https://raw.github.com/technomancy/leiningen/stable/bin/lein.bat).
2010-09-10 17:02:26 +00:00
If you have wget.exe or curl.exe already installed and in PATH, you
can just run `lein self-install`, otherwise get the standalone jar from the
[downloads page](https://github.com/technomancy/leiningen/downloads).
If you have [Cygwin](http://www.cygwin.com/) you should be able to use
the shell script above rather than the batch file.
The `master` branch is currently undergoing massive changes for
Leiningen 2.0; you should not expect it to work. If you want to build
from source for everyday use, use the `1.x` branch.
2009-10-31 21:35:25 +00:00
## Usage
The
2011-07-06 16:03:03 +00:00
[tutorial](https://github.com/technomancy/leiningen/blob/stable/doc/TUTORIAL.md)
has a detailed walk-through of the steps involved in creating a new
project, but here are the commonly-used tasks:
$ lein new NAME # generate a new project skeleton
$ lein test [TESTS] # run the tests in the TESTS namespaces, or all tests
2009-11-02 06:47:21 +00:00
$ lein repl # launch an interactive REPL session and socket server
2009-10-31 21:35:25 +00:00
2010-06-22 02:21:13 +00:00
$ lein jar # package up the whole project as a .jar file
2009-11-09 06:09:39 +00:00
2010-08-18 05:21:53 +00:00
$ lein install [NAME VERSION] # install a project
2012-01-13 00:10:32 +00:00
$ lein search ... # find jars for your project.clj dependencies
Use `lein help` to see a complete list. `lein help $TASK` shows the
2012-01-13 00:10:32 +00:00
usage for a specific task.
2010-08-18 05:21:53 +00:00
You can also chain tasks together in a single command by using commas:
$ lein clean, test foo.test-core, jar
2010-08-17 05:05:24 +00:00
2010-08-18 05:21:53 +00:00
Most tasks need to be run from somewhere inside a project directory to
work, but some (`new`, `help`, `version`, and the
two-argument version of `install`) may run from anywhere.
2010-08-18 05:21:53 +00:00
The install task places shell scripts in the `~/.lein/bin`
2010-08-18 05:21:53 +00:00
directory for projects that include them, so if you want to take
advantage of this, you should put it on your `$PATH`.
2010-08-17 05:05:24 +00:00
2009-10-31 21:35:25 +00:00
## Configuration
The `project.clj` file in the project root should look like this:
2012-01-13 01:10:35 +00:00
```clj
(defproject myproject "0.5.0-SNAPSHOT"
:description "A project for doing things."
:url "http://github.com/technomancy/myproject"
:dependencies [[org.clojure/clojure "1.2.1"]
[org.clojure/clojure-contrib "1.2.0"]]
2012-01-13 00:10:32 +00:00
:plugins [[lein-ring "0.4.5"]])
```
2009-10-31 21:35:25 +00:00
2012-01-13 00:10:32 +00:00
To find specific versions of a dependency, use `lein search`.
The `lein new` task generates a project skeleton with an
appropriate starting point from which you can work. See the
2010-12-03 02:16:16 +00:00
[sample.project.clj](https://github.com/technomancy/leiningen/blob/stable/sample.project.clj)
file for a detailed listing of configuration options.
2010-08-18 05:21:53 +00:00
You can also have user-level configuration that applies for all
projects. The `~/.lein/init.clj` file will be loaded every time
2010-11-19 05:39:44 +00:00
Leiningen launches; any arbitrary code may go there. This code is
executed inside Leiningen itself, not in your project. Set the
`:repl-init` key in project.clj to point to a namespace if
2010-11-19 05:39:44 +00:00
you want code executed inside your project.
2012-01-13 01:10:35 +00:00
### Profiles
2012-01-13 00:10:32 +00:00
2012-01-13 01:10:35 +00:00
You can change the configuration of your project by applying various
profiles. Each profile is defined as a map which gets merged into your
project map.
Profiles are read from 3 different locations: (in order of precedence)
2012-01-13 01:10:35 +00:00
* the `:profiles` entry in the project map
* the `~/.lein/profiles.clj` file
* the `leiningen.core.project/default-profiles` atom
Each of these should be a map of profile names to profile maps.
Note that profiles have special logic when they are merged into your
project map: maps get merged recursively, but sets are `union`ed and
other collections are `concat`enated. Other values are simply
replaced. Profiles take precedence in the order they are specified.
2012-01-13 01:10:35 +00:00
To activate a profile for a given run, use the `with-profile`
higher-order task:
2012-01-13 01:10:35 +00:00
$ lein with-profile qa test :database
Multiple profiles may be specified with commas:
$ lein with-profile qa,user test :database
2012-01-13 01:10:35 +00:00
A single `with-profile` call does not apply across task comma-chains.
Outside `with-profile` calls, the `:dev` and `:user` profiles are
active by default.
2012-01-29 21:59:07 +00:00
TODO: add example
2012-01-13 01:10:35 +00:00
### Leiningen Plugins
Leiningen supports plugins which may contain both new tasks and hooks
that modify behaivour of existing tasks. See
2012-01-13 01:10:35 +00:00
[the plugins wiki page](https://github.com/technomancy/leiningen/wiki/Plugins)
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
2012-01-13 00:10:32 +00:00
swank-clojure) then it should be added to the `:plugins` list in the
`:user` profile from `~/.lein/profiles.clj`. The
[plugin guide](https://github.com/technomancy/leiningen/blob/stable/doc/PLUGINS.md)
explains how to write plugins.
2009-11-05 04:25:13 +00:00
## FAQ
2009-11-06 04:34:14 +00:00
**Q:** How do you pronounce Leiningen?
2011-03-22 04:07:10 +00:00
**A:** It's LINE-ing-en. ['laɪnɪŋən]
2009-11-05 04:25:13 +00:00
**Q:** What's a group ID? How do snapshots work?
**A:** See the
2011-07-06 16:03:03 +00:00
[tutorial](https://github.com/technomancy/leiningen/blob/stable/doc/TUTORIAL.md)
2010-06-22 02:21:13 +00:00
for background.
**Q:** How should I pick my version numbers?
**A:** Use [semantic versioning](http://semver.org).
2009-12-21 04:37:19 +00:00
**Q:** What if my project depends on jars that aren't in any repository?
2011-07-06 16:03:03 +00:00
**A:** The [deploy guide](https://github.com/technomancy/leiningen/blob/stable/doc/DEPLOY.md)
explains how to set up a private repository. If you are not sharing
2012-01-13 00:10:32 +00:00
them with a team you could also just [install locally](https://github.com/kumarshantanu/lein-localrepo).
2010-06-22 02:21:13 +00:00
**Q:** I want to hack two projects in parallel, but it's annoying to switch between them.
2012-01-13 00:10:32 +00:00
**A:** If you create a directory called `checkouts` in your project
root and symlink some other project roots into it, Leiningen will
allow you to hack on them in parallel. That means changes in the
dependency will be visible in the main project without having to go
through the whole install/switch-projects/deps/restart-repl cycle,
and the copy in `checkouts` will take precedence over the dependency
declared in project.clj. Note that this is not a replacement for
listing the project in `:dependencies`; it simply supplements that for
convenience.
2009-12-21 21:37:38 +00:00
**Q:** Is it possible to exclude indirect dependencies?
**A:** Yes. Some libraries, such as log4j, depend on projects that are
not included in public repositories and unnecessary for basic
2012-01-13 00:10:32 +00:00
functionality. Projects listed as `:dependencies` may exclude
any of their dependencies by using the `:exclusions` key. See
`lein help sample` for details.
2012-01-13 00:10:32 +00:00
**Q:** What does `java.lang.NoSuchMethodError: clojure.lang.RestFn.<init>(I)V` mean?
2010-06-22 02:21:13 +00:00
**A:** It means you have some code that was AOT (ahead-of-time)
compiled with a different version of Clojure than the one you're
currently using. If it persists after running `lein clean` then it
2011-03-22 04:07:10 +00:00
is a problem with your dependencies. Note that for
2010-06-22 02:21:13 +00:00
your own project that AOT compilation in Clojure is much less
important than it is in other languages. There are a few
language-level features that must be AOT-compiled to work, generally
for Java interop. If you are not using any of these features, you
should not AOT-compile your project if other projects may depend
upon it.
**Q:** I'm behind an HTTP proxy; how can I fetch my dependencies?
2012-01-13 00:10:32 +00:00
**A:** TODO: document aether proxy setup.
**Q:** What can be done to speed up launch?
2011-04-13 02:08:00 +00:00
**A:** The main delay involved in Leiningen comes from starting the
2012-01-13 00:10:32 +00:00
JVM. Most people use a development cycle that involves keeping a
single process running for as long as you're working on that
project. Depending on your editor you may be able to do this via its
Clojure integration. (See
2011-04-13 02:08:00 +00:00
[swank-clojure](http://github.com/technomancy/swank-clojure) or
2012-01-13 00:10:32 +00:00
[VimClojure](https://bitbucket.org/kotarak/vimclojure), for
example.) Otherwise you can use the basic `lein repl`.
**Q:** Still too slow; what else can make startup faster?
**A:** If you are running an older version of Leiningen (before 1.7)
you can `export LEIN_JVM_OPTS=-XX:+TieredCompilation` to improve
boot time. This requires Hotspot version 20 or newer. On newer versions
of Leiningen it is enabled automatically.
2011-02-19 04:43:29 +00:00
**Q:** I don't have access to stdin inside my project.
2012-01-13 00:10:32 +00:00
**A:** There's a problem in the library that Leiningen uses to spawn
2011-02-19 04:43:29 +00:00
new processes that blocks access to console input. This means that
functions like `read-line` will not work as expected in most
contexts, though the `repl` task necessarily includes a
workaround. You can also use the `trampoline` task to
2011-06-24 03:19:39 +00:00
launch your project's JVM after Leiningen's has exited rather than
2012-01-13 00:10:32 +00:00
launching it as a subprocess. TODO: document in-process classloader
## Contributing
Please report issues on the
[Github issue tracker](https://github.com/technomancy/leiningen/issues)
or the [mailing list](http://groups.google.com/group/leiningen).
Personal email addresses are **not** appropriate for bug reports. See
the readme for the `leiningen-core` library and `doc/PLUGINS.md` for
more details on how Leiningen's codebase is structured.
2009-12-21 04:37:19 +00:00
2011-07-20 02:04:15 +00:00
Patches are preferred as Github pull requests, though patches from
2011-12-05 03:43:14 +00:00
`git format-patch` are also welcome on the mailing list. Please use
topic branches when sending pull requests rather than committing
2011-07-20 02:04:15 +00:00
directly to master in order to minimize unnecessary merge commit
clutter.
Contributors who have had a single patch accepted may request commit
2012-01-13 00:10:32 +00:00
rights on the mailing list or in IRC. Please use your judgment
regarding potentially-destabilizing work and branches. Other
contributors will usually be glad to review topic branches before
merging if you ask on IRC or the mailing list.
2011-07-20 02:04:15 +00:00
Contributors are also welcome to request a free
[Leiningen sticker](http://twitpic.com/2e33r1) by asking on the
mailing list and mailing a SASE.
2010-07-28 03:13:56 +00:00
## Building
2010-10-06 03:23:01 +00:00
You don't need to "build" Leiningen per se, but when you're using a
checkout you will need to get its dependencies in place.
2010-07-28 03:13:56 +00:00
2012-02-07 23:26:38 +00:00
Using Leiningen 1.x, run `lein install` in the `leiningen-core`
subproject directory. When the dependencies change you will also have
to do `rm .lein-classpath` in the project root.
2010-11-11 04:49:45 +00:00
Once you've done that, symlink `bin/lein` to somewhere on your
`$PATH`, usually as `lein2` in order to keep it distinct from your
existing installation.
2009-10-31 21:35:25 +00:00
## License
2012-01-13 00:10:32 +00:00
Source Copyright © 2009-2012 Phil Hagelberg, Alex Osborne, Dan Larkin, and
2011-07-20 02:04:15 +00:00
[other contributors](https://www.ohloh.net/p/leiningen/contributors).
Distributed under the Eclipse Public License, the same as Clojure
uses. See the file COPYING.
2009-10-31 21:35:25 +00:00
Thanks to Stuart Halloway for Lancet and Tim Dysinger for convincing
me that good builds are important.
2011-07-20 02:04:15 +00:00
Images Copyright © 2010 Phil Hagelberg. Distributed under the Creative
Commons Attribution + ShareAlike
License. [Full-size version](https://github.com/downloads/technomancy/leiningen/leiningen-full.jpg)
available.