-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
16 lines (15 loc) · 858 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject fumi "0.4.0-SNAPSHOT"
:description "A Prometheus client for Clojure."
:url "https://github.com/gnarroway/fumi"
:license {:name "The MIT License"
:url "http://opensource.org/licenses/mit-license.php"
:distribution :repo}
:deploy-repositories [["clojars" {:url "https://clojars.org/repo"
:username :env/clojars_user
:password :env/clojars_pass
:sign-releases false}]]
:dependencies [[io.prometheus/simpleclient "0.12.0"]
[io.prometheus/simpleclient_common "0.12.0"]]
:plugins [[lein-cljfmt "0.6.6"]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.10.1"]
[io.prometheus/simpleclient_hotspot "0.12.0"]]}})