forked from gnarroway/hato
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
28 lines (24 loc) · 1.24 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
27
(defproject gorillalabs/hato "0.0.0"
:description "An HTTP client for Clojure, (forked from https://github.com/gnarroway/hato), using muuntaja for content format negotiation."
:url "https://github.com/gorillalabs/hato"
:license {:name "The MIT License"
:url "http://opensource.org/licenses/mit-license.php"
:distribution :repo}
:plugins [[com.roomkey/lein-v "7.0.0"]]
:middleware [leiningen.v/version-from-scm
leiningen.v/dependency-version-from-scm
leiningen.v/add-workspace-data]
:dependencies [[gorillalabs/muuntaja "0.8.0"]]
:global-vars {*warn-on-reflection* true}
:profiles {:dev {:dependencies [[org.clojure/clojure "1.10.1"]
[ring/ring-core "1.9.0"]
[javax.servlet/servlet-api "2.5"]
[funcool/promesa "6.0.0"]
[http-kit "2.3.0"]]}}
:scm {:name "git"
:url "https://github.com/gorillalabs/hato"}
;; make sure you have your ~/.lein/credentials.clj.gpg setup correctly
:release-tasks [["vcs" "assert-committed"]
["v" "update"]
["deploy" "clojars"]
["vcs" "push"]])