forked from dakrone/clj-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
29 lines (29 loc) · 1.45 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
(defproject clj-http "0.7.1-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}
:repositories {"sona" "http://oss.sonatype.org/content/repositories/snapshots"}
:warn-on-reflection false
:min-lein-version "2.0.0"
:dependencies [[org.apache.httpcomponents/httpcore "4.2.4"]
[org.apache.httpcomponents/httpclient "4.2.3"]
[org.apache.httpcomponents/httpmime "4.2.3"]
[commons-codec "1.7"]
[commons-io "2.4"]
[slingshot "0.10.3"]
[cheshire "5.1.0"]
[crouton "0.1.1"]
[org.clojure/tools.reader "0.7.3"]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.5.1"]
[ring/ring-jetty-adapter "1.1.8"]
[ring/ring-devel "1.1.8"]]}
:1.2 {:dependencies [[org.clojure/clojure "1.2.1"]]}
:1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]}
:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}}
:aliases {"all" ["with-profile" "dev,1.3:dev,1.4:dev"]}
:plugins [[codox "0.6.4"]]
:test-selectors {:default #(not (:integration %))
:integration :integration
:all (constantly true)})