forked from AppsFlyer/aerospike-clj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
17 lines (17 loc) · 915 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject aerospike-clj "0.2.6"
: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.3.1"]
[manifold "0.1.8"]
[com.taoensso/timbre "4.10.0"]]
:plugins [[lein-codox "0.10.5"]]
:codox {:output-path "codox"
:source-uri "http://github.com/AppsFlyer/aerospike-clj/blob/{version}/{filepath}#L{line}"
:metadata {:doc/format :markdown}}
:profiles {:dev {:dependencies [[org.clojure/clojure "1.10.0"]
[criterium "0.4.4"]
[cheshire "5.8.1"]
[com.fasterxml.jackson.core/jackson-databind "2.9.8"]]
:global-vars {*warn-on-reflection* true}}})