forked from mpenet/spandex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
22 lines (22 loc) · 1.13 KB
/
project.clj
File metadata and controls
22 lines (22 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(def es-client-version "6.4.3")
(defproject cc.qbits/spandex "0.7.0-alpha1"
:description "Clojure Wrapper of the new/official ElasticSearch REST client"
:url "https://github.com/mpenet/spandex"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.0-beta5"]
[org.clojure/core.async "0.4.474"]
[org.elasticsearch.client/elasticsearch-rest-client ~es-client-version
; more recent through ring/ring-codec
:exclusions [commons-codec]]
[org.elasticsearch.client/elasticsearch-rest-client-sniffer ~es-client-version
:exclusions [com.fasterxml.jackson.core/jackson-core
commons-codec]]
[cc.qbits/commons "0.5.1"]
[cheshire "5.8.0"]
[ring/ring-codec "1.1.1"]]
:source-paths ["src/clj"]
:global-vars {*warn-on-reflection* true}
:pedantic? :warn
:profiles {:dev {:plugins [[lein-cljfmt "0.6.1"
:exclusions [org.clojure/clojurescript]]]}})