-
Notifications
You must be signed in to change notification settings - Fork 22
/
project.clj
40 lines (40 loc) · 2.58 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
(defproject com.appsflyer/aerospike-clj "3.1.0"
: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"}
:java-source-paths ["src/main/java"]
:source-paths ["src/main/clojure"]
:deploy-repositories [["releases" {:url "https://repo.clojars.org"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases false}]
["snapshots" {:url "https://repo.clojars.org"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases false}]]
:dependencies [[org.clojure/tools.logging "1.2.4"]
[com.aerospike/aerospike-client "6.1.10"]
[funcool/promesa "8.0.450"]]
:profiles {:dev {:plugins [[lein-eftest "0.5.9"]]
:dependencies [[org.clojure/clojure "1.11.1"]
[clj-test-containers "0.7.4"]
[criterium "0.4.6"]
[cheshire "5.11.0"]
[tortue/spy "2.14.0"]
[com.fasterxml.jackson.core/jackson-databind "2.11.2"]
[clj-kondo "2023.09.07"]
[com.clojure-goes-fast/clj-java-decompiler "0.3.4"]]
:eftest {:multithread? false
:report eftest.report.junit/report
:report-to-file "target/junit.xml"}
:aliases {"clj-kondo" ["run" "-m" "clj-kondo.main"]
"lint" ["run" "-m" "clj-kondo.main" "--lint" "src" "test"]}
:global-vars {*warn-on-reflection* true}
:test-selectors {:integration :integration
:all (constantly true)
:default (complement :integration)}}
:docs {:plugins [[lein-codox "0.10.8"]]
:codox {:output-path "codox"
:source-uri "http://github.com/AppsFlyer/aerospike-clj/blob/{version}/{filepath}#L{line}"
:metadata {:doc/format :markdown}}}})