leiningen/README.md

255 lines
11 KiB
Markdown
Raw Normal View History

2009-10-31 21:35:25 +00:00
# Leiningen
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
2010-12-03 02:16:16 +00:00
<img src="https://github.com/downloads/technomancy/leiningen/leiningen-banner.png" alt="Leiningen logo" title="The man himself" align="right" />
2010-07-18 20:28:49 +00:00
Working on Clojure projects with tools designed for Java can be an
exercise in frustration. With Leiningen, you just write Clojure.
2009-11-15 04:56:52 +00:00
2009-11-12 05:25:16 +00:00
## Installation
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.
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
Use `lein help` to see a complete list. `lein help $TASK` shows the
usage for a specific one.
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`, `plugin`, 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:
```clojure
(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"]]
:dev-dependencies [[lein-ring "0.4.5"]])
```
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.
You can also manage your plugins with the `plugin` task. Use
the same arguments you would put in the Leiningen :dev-dependencies if
you were only using the plugin on a single project.
$ lein plugin install lein-clojars "0.6.0"
See the plugin task's help for more information.
$ lein plugin help
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
2010-12-03 02:16:16 +00:00
**Q:** What does this offer over [Lancet](https://github.com/stuarthalloway/lancet)?
2009-11-06 04:34:14 +00:00
**A:** Lancet is more of a library than a build tool. It doesn't predefine
2009-11-05 04:25:13 +00:00
any tasks apart from what Ant itself offers, so there is nothing
Clojure-specific in it. Leiningen builds on Lancet, but takes
things further. In addition, it includes some Maven functionality
for dependencies.
2009-11-05 04:25:13 +00:00
2009-11-06 04:34:14 +00:00
**Q:** But Maven is terrifying!
**A:** That's not a question. Anyway, Leiningen only uses the dependency
2011-04-13 02:08:00 +00:00
resolution parts of Maven, which are quite tame. For some other
build-related functionality it uses Ant under the covers via Lancet.
2009-11-05 04:25:13 +00:00
2009-11-06 04:34:14 +00:00
**Q:** But Ant is terrifying!
**A:** That's [true](http://www.defmacro.org/ramblings/lisp.html). Ant is
2009-11-05 04:25:13 +00:00
an interpreter for a [procedural language with a regrettable
syntax](http://blogs.tedneward.com/2005/08/22/When+Do+You+Use+XML+Again.aspx).
But if you treat it as a standard library of build-related
functions and are able to write it with a more pleasing syntax, it's
not bad.
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).
2011-03-16 01:44:53 +00:00
**Q:** It says a required artifact is missing for "super-pom". What's that?
**A:** The Maven API that Leiningen uses refers to your project as
"super-pom". It's just a quirk of the API. It probably means there
is a typo in your :dependency declaration in project.clj.
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
them with a team you could also just [install locally.](http://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html).
2010-06-22 02:21:13 +00:00
**Q:** How do I write my own tasks?
**A:** If it's a task that may be useful to more than just your
project, you should make it into a
2011-07-06 16:03:03 +00:00
[plugin](https://github.com/technomancy/leiningen/blob/stable/doc/PLUGINS.md).
2010-06-22 02:21:13 +00:00
You can also include one-off tasks in your src/leiningen/ directory
if they're not worth spinning off; the plugin guide shows how.
**Q:** I want to hack two projects in parallel, but it's annoying to switch between them.
2010-12-03 02:10:17 +00:00
**A:** Use a feature called _checkout dependencies_. If you create a
directory called `checkouts` in your project root and symlink
2010-12-03 02:10:17 +00:00
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. Note that this is
2010-12-03 02:10:17 +00:00
not a replacement for listing the project in :dependencies; it
2011-04-13 02:08:00 +00:00
simply supplements that for tighter change cycles.
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
functionality. Projects listed as :dependencies may exclude
any of their dependencies by using the :exclusions key. See
sample.project.clj for details.
2010-06-22 02:21:13 +00:00
**Q:** What does java.lang.NoSuchMethodError: clojure.lang.RestFn.<init>(I)V mean?
**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?
**A:** Currently you need to configure the underlying Maven library by
creating `~/.m2/settings.xml` as explained in the
[Maven guide](http://maven.apache.org/guides/mini/guide-proxies.html).
**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
JVM. Launching `lein interactive` will give you an interactive
2011-04-13 02:08:00 +00:00
session so you can run many tasks against the same process instead
of launching a new one every time. Depending on your editor you may
also be able to take advantage of its Clojure integration. (See
[swank-clojure](http://github.com/technomancy/swank-clojure) or
[VimClojure](https://bitbucket.org/kotarak/vimclojure), for example.)
**Q:** Still too slow; what else can make startup faster?
**A:** There are two flavours of the JVM, client and server. The
server is optimized for long-running processes and has quite a poor
startup time. Leiningen will try to launch a client JVM, but this
only works on 32-bit JVM installations. If you are on a 64-bit
machine you can still use a client JVM if you install 32-bit
packages; on Debian try ia32-sun-java6-bin. Once you've installed
it, run `sudo update-java-alternatives -s ia32-java-6-sun`.
2011-02-19 04:43:29 +00:00
**Q:** I don't have access to stdin inside my project.
**A:** There's a bug in the Ant library that Leiningen uses to spawn
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
launching it as a subprocess
## 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 file
HACKING.md for more details on how Leiningen's codebase is structured.
2009-12-21 04:37:19 +00:00
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
2011-04-13 02:08:00 +00:00
checkout you will need to get its dependencies in place. In most cases
a `lein self-install` will usually get you what you
2011-04-13 02:08:00 +00:00
need. However, this will occasionally fail for very new SNAPSHOT
versions since the standalone jar will not have been uploaded yet.
Alternatively if you have a copy of an older Leiningen version around
(at least 1.1.0, installed as lein-stable, for example), then you can
run `lein-stable deps` in your checkout. If Leiningen's dependencies
2011-04-13 02:08:00 +00:00
change it will be necessary to remove the lib/ directory entirely
before running `lein deps` again. (This is not necessary for most
2011-04-13 02:08:00 +00:00
projects, but Leiningen has unique bootstrapping issues when working
on itself.)
2010-07-28 03:13:56 +00:00
2010-10-06 03:23:01 +00:00
You can also use Maven, just for variety's sake:
2010-07-28 03:13:56 +00:00
2010-08-20 03:53:40 +00:00
$ mvn dependency:copy-dependencies
2010-07-28 03:13:56 +00:00
$ mv target/dependency lib
Symlink `bin/lein` from your checkout into a location on the $PATH. The
2010-11-11 04:49:45 +00:00
script can figure out when it's being called from inside a checkout
2011-04-13 02:08:00 +00:00
and use the checkout rather than the self-install uberjar if necessary.
2010-11-11 04:49:45 +00:00
2009-10-31 21:35:25 +00:00
## License
2011-02-11 03:26:15 +00:00
Copyright © 2009-2011 Phil Hagelberg, Alex Osborne, Dan Larkin, and
2011-03-16 01:44:53 +00:00
[other contributors](https://www.ohloh.net/p/leiningen/contributors).
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.
2009-10-31 21:35:25 +00:00
Distributed under the Eclipse Public License, the same as Clojure
uses. See the file COPYING.