forked from dakrone/clj-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
35 lines (35 loc) · 1.79 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
28
29
30
31
32
33
34
35
(defproject clj-http "3.0.0-SNAPSHOT"
:description "A Clojure HTTP library wrapping the Apache HttpComponents client."
:url "https://github.com/dakrone/clj-http/"
:license {:name "The MIT License"
:url "http://opensource.org/licenses/mit-license.php"
:distribution :repo}
:global-vars {*warn-on-reflection* false}
:min-lein-version "2.0.0"
:exclusions [org.clojure/clojure]
:dependencies [[org.apache.httpcomponents/httpcore "4.4.1"]
[org.apache.httpcomponents/httpclient "4.5"]
[org.apache.httpcomponents/httpmime "4.5"]
[commons-codec "1.10"]
[commons-io "2.4"]
[slingshot "0.12.2"]
[potemkin "0.4.1"]]
:profiles {:dev {:dependencies [;; optional deps
[cheshire "5.5.0"]
[crouton "0.1.2"]
[org.clojure/tools.reader "0.9.2"]
[com.cognitect/transit-clj "0.8.275"]
[ring/ring-codec "1.0.0"]
;; other (testing) deps
[org.clojure/clojure "1.7.0"]
[org.clojure/tools.logging "0.3.1"]
[log4j "1.2.17"]
[ring/ring-jetty-adapter "1.4.0"]
[ring/ring-devel "1.4.0"]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}}
:aliases {"all" ["with-profile" "dev,1.5:dev,1.6:dev"]}
:plugins [[codox "0.6.4"]]
:test-selectors {:default #(not (:integration %))
:integration :integration
:all (constantly true)})