forked from AppsFlyer/aerospike-clj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
25 lines (25 loc) · 1.46 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
(defproject aerospike-clj "1.0.1"
:description "An Aerospike Clojure client."
:url "https://github.com/AppsFlyer/aerospike-clj"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[com.aerospike/aerospike-client "4.4.15"]
[funcool/promesa "5.1.0"]]
:source-paths ["src/main/clojure"]
:java-source-paths ["src/main/java"] ;; currently empty
:profiles {:dev {:plugins [[jonase/eastwood "0.3.5"]
[lein-ancient "0.6.15"]]
:dependencies [[org.clojure/clojure "1.10.1"]
[criterium "0.4.6"]
[cheshire "5.10.0"]
[com.taoensso/timbre "4.10.0"]
[danlentz/clj-uuid "0.1.9"]
[com.fasterxml.jackson.core/jackson-databind "2.11.2"]
[clj-kondo "RELEASE"]]
:aliases {"clj-kondo" ["run" "-m" "clj-kondo.main"]
"lint" ["run" "-m" "clj-kondo.main" "--lint" "src" "test"]}
:global-vars {*warn-on-reflection* true}}
:docs {:plugins [[lein-codox "0.10.7"]]
:codox {:output-path "codox"
:source-uri "http://github.com/AppsFlyer/aerospike-clj/blob/{version}/{filepath}#L{line}"
:metadata {:doc/format :markdown}}}})