forked from hiredman/clj-http-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
23 lines (23 loc) · 1.16 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
(defproject clj-http-lite "0.2.1-SNAPSHOT"
:description "A Clojure HTTP library similar to clj-http, but more lightweight."
:url "https://github.com/hiredman/clj-http-lite/"
:repositories {"sona" "http://oss.sonatype.org/content/repositories/snapshots"}
:warn-on-reflection false
:dependencies [[org.clojure/clojure "1.4.0"]
[slingshot "0.10.3"]]
:profiles {:dev {:dependencies [[ring/ring-jetty-adapter "1.0.2"]
[ring/ring-devel "1.0.2"]
[lein-multi "1.1.0"]]}
:1.2 {:dependencies [[org.clojure/clojure "1.2.1"]]}
:1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.0-alpha5"]]}}
:dev-dependencies [[ring/ring-jetty-adapter "1.0.2"]
[ring/ring-devel "1.0.2"]
[lein-multi "1.1.0"]]
:test-selectors {:default #(not (:integration %))
:integration :integration
:all (constantly true)}
:aliases {"all" ["with-profile" "dev,1.2:dev,1.3:dev:1.5,dev"]}
:checksum-deps true
:aot [clj-http.lite.NoDHSocketFactory]
)