diff --git a/.gitignore b/.gitignore index dc6026f..99ca6e5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ target -src/old \ No newline at end of file +src/old.lein* diff --git a/.lein-failures b/.lein-failures new file mode 100644 index 0000000..65dcdc3 --- /dev/null +++ b/.lein-failures @@ -0,0 +1 @@ +#{} \ No newline at end of file diff --git a/pom.xml b/pom.xml index 6def36a..b08b048 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ fogus Fogus - http://fogus.me + http://www.fogus.me @@ -33,7 +33,7 @@ org.clojure core.cache - 0.6.1 + 0.6.2 diff --git a/project.clj b/project.clj new file mode 100644 index 0000000..a9c065c --- /dev/null +++ b/project.clj @@ -0,0 +1,9 @@ +(defproject core.memoize "0.5.3-SNAPSHOT" + :description "A memoization library for Clojure." + :dependencies [[org.clojure/clojure "1.5.0-master-SNAPSHOT"] + [org.clojure/core.cache "0.6.2"]] + :plugins [[lein-swank "1.4.4"] + [lein-marginalia "0.7.1"]] + :repositories {"sonatype-oss-public" "https://oss.sonatype.org/content/groups/public/"} + :source-paths ["src/main/clojure"] + :test-paths ["src/test/clojure"])