-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
24 lines (19 loc) · 1020 Bytes
/
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
(defproject clj-http-hystrix "0.1.7-SNAPSHOT"
:description "A Clojure library to wrap clj-http requests as hystrix commands"
:url "https://github.com/joelittlejohn/clj-http-hystrix"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[clj-http "3.10.0"]
[com.netflix.hystrix/hystrix-clj "1.5.18"]
[org.clojure/tools.logging "0.5.0"]
[robert/hooke "1.3.0"]
[slingshot "0.12.2"]]
:env {:restdriver-port "8081"}
:repositories [["releases" {:url "https://clojars.org/repo"
:creds :gpg}]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.10.1"]
[midje "1.9.9"]
[rest-cljer "0.2.2" :exclusions [clj-http]]]
:plugins [[lein-cloverage "1.0.10"]
[lein-environ "1.1.0"]
[lein-midje "3.2.1"]]}})