-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject.clj
More file actions
25 lines (25 loc) · 1.22 KB
/
project.clj
File metadata and controls
25 lines (25 loc) · 1.22 KB
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
(defproject fullcontact/full.cache "1.3.0"
:description "In-memory + memcache caching for Clojure with async loading."
:url "https://github.com/fullcontact/full.cache"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo}
:deploy-repositories [["releases" {:url "https://clojars.org/repo/" :creds :gpg}]]
:dependencies [[org.clojure/clojure "1.10.1"]
[net.jodah/expiringmap "0.4.1"]
[com.taoensso/nippy "2.14.0"]
[com.amazonaws/elasticache-java-cluster-client "1.2.2"]
[fullcontact/full.core "1.1.1"
:exclusions [org.clojure/clojurescript]]
[fullcontact/full.async "1.1.0"]]
:aot :all
:plugins [[lein-midje "3.2.2"]]
:release-tasks [["vcs" "assert-committed"]
["change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag" "--no-sign"]
["deploy"]
["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]
["vcs" "push"]]
:profiles {:dev {:dependencies [[midje "1.9.9"]]}})