forked from mpenet/spandex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
26 lines (26 loc) · 1.45 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
(def es-client-version "7.12.1")
(defproject com.signal-ai/spandex "0.7.11-1-SNAPSHOT"
:description "Clojure Wrapper of the new/official ElasticSearch REST client"
:url "https://github.com/signal-ai/spandex"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/core.async "0.6.532"]
[org.elasticsearch.client/elasticsearch-rest-client ~es-client-version]
[org.elasticsearch.client/elasticsearch-rest-client-sniffer ~es-client-version
:exclusions [com.fasterxml.jackson.core/jackson-core]]
[cc.qbits/commons "0.5.2"]
[cheshire "5.9.0"]
[ring/ring-codec "1.1.2"]]
:deploy-repositories [["releases" {:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_token
:sign-releases false}]
["snapshots" {:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_token}]]
:source-paths ["src/clj"]
:global-vars {*warn-on-reflection* true}
:pedantic? :warn
:profiles {:dev {:plugins [[lein-cljfmt "0.6.4"
:exclusions [org.clojure/clojurescript]]]}})