-
-
Notifications
You must be signed in to change notification settings - Fork 131
/
project.clj
72 lines (60 loc) · 2.55 KB
/
project.clj
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
(defproject com.taoensso/carmine "3.5.0-SNAPSHOT"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Redis client + message queue for Clojure"
:url "https://github.com/taoensso/carmine"
:license
{:name "Eclipse Public License - v 1.0"
:url "https://www.eclipse.org/legal/epl-v10.html"}
:test-paths ["test" #_"src"]
:dependencies
[[com.taoensso/encore "3.131.0"]
[com.taoensso/nippy "3.5.0-RC1"]
[com.taoensso/timbre "6.6.1"]
[org.apache.commons/commons-pool2 "2.12.0"]
[commons-codec/commons-codec "1.17.1"]]
:profiles
{;; :default [:base :system :user :provided :dev]
:provided {:dependencies [[org.clojure/clojure "1.12.0"]]}
:c1.12 {:dependencies [[org.clojure/clojure "1.12.0"]]}
:c1.11 {:dependencies [[org.clojure/clojure "1.11.4"]]}
:c1.10 {:dependencies [[org.clojure/clojure "1.10.3"]]}
:c1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}
:graal-tests
{:source-paths ["test"]
:main taoensso.graal-tests
:aot [taoensso.graal-tests]
:uberjar-name "graal-tests.jar"
:dependencies
[[org.clojure/clojure "1.11.1"]
[com.github.clj-easy/graal-build-time "1.0.5"]]}
:dev
{:jvm-opts ["-server" "-Dtaoensso.elide-deprecated=true"]
:global-vars
{*warn-on-reflection* true
*assert* true
*unchecked-math* false #_:warn-on-boxed}
:dependencies
[[org.clojure/test.check "1.1.1"]
[org.clojure/data.json "2.5.0"]
[com.taoensso/faraday "1.12.3"]
[clj-aws-s3 "0.3.10"]
[ring/ring-core "1.13.0"]]
:plugins
[[lein-pprint "1.3.2"]
[lein-ancient "0.7.0"]
[com.taoensso.forks/lein-codox "0.10.11"]]
:codox
{:language #{:clojure #_:clojurescript}
:base-language :clojure}}}
:test-selectors
{:v3 (fn [{:keys [ns]} & _] (.startsWith (str ns) "taoensso.carmine."))
:v4 (fn [{:keys [ns]} & _] (.startsWith (str ns) "taoensso.carmine-v4."))}
:aliases
{"start-dev" ["with-profile" "+dev" "repl" ":headless"]
;; "build-once" ["do" ["clean"] ["cljsbuild" "once"]]
"deploy-lib" ["do" #_["build-once"] ["deploy" "clojars"] ["install"]]
"test-v3" ["with-profile" "+c1.12:+c1.11:+c1.10:+c1.9" "test" ":v3"]
"test-v4" ["with-profile" "+c1.12:+c1.11:+c1.10:+c1.9" "test" ":v4"]
"test-clj" ["with-profile" "+c1.12:+c1.11:+c1.10:+c1.9" "test"]
;; "test-cljs" ["with-profile" "+c1.12" "cljsbuild" "test"]
"test-all" ["do" ["clean"] ["test-clj"] #_["test-cljs"]]})