forked from gojek/bulwark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
19 lines (19 loc) · 1.03 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(defproject tech.gojek/bulwark "1.1.0"
:description "Hystrix for Clojurists"
:url "https://github.com/gojektech/bulwark"
:license {:name "Apache License, Version 2.0"
:url "https://www.apache.org/licenses/LICENSE-2.0"}
:repl-options {:host "0.0.0.0"
:port 1337}
:deploy-repositories [["clojars" {:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases false}]]
:dependencies [[com.netflix.hystrix/hystrix-clj "1.5.12"]
[org.slf4j/slf4j-api "1.7.25"]]
:profiles {:test {:plugins [[lein-cloverage "1.0.13"]]}
:dev {:plugins [[jonase/eastwood "0.2.6"]
[lein-cljfmt "0.6.3"]
[lein-cloverage "1.0.13"]
[lein-kibit "0.1.6"]]
:dependencies [[org.clojure/clojure "1.9.0"]]}})