1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Including core.memoize in your projects
=====================================
The core.memoize releases and snapshots are stored in the following repositories:
* Release versions stored at [Maven Central](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.clojure%22%20AND%20a%3A%22core.memoize%22)
* Snapshot versions stored at [Sonatype](https://oss.sonatype.org/index.html#nexus-search;gav~org.clojure~core.memoize~~~) (url at <http://oss.sonatype.org/content/repositories/snapshots>)
## Leiningen
You can use core.memoize in your [Leiningen](https://github.com/technomancy/leiningen) projects with the following `:dependencies` directive in your `project.clj` file:
[org.clojure/core.memoize "1.0.250"]
## Maven
For Maven-driven projects, use the following slice of XML in your `pom.xml`'s `<dependencies>` section:
<dependency>
<groupId>org.clojure</groupId>
<artifactId>core.memoize</artifactId>
<version>1.0.250</version>
</dependency>
Enjoy!
|