forked from michaelklishin/langohr
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
49 lines (49 loc) · 2.83 KB
/
project.clj
File metadata and controls
49 lines (49 loc) · 2.83 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
(defproject com.novemberain/langohr "3.5.0-SNAPSHOT"
:description "An idiomatic Clojure client for RabbitMQ that embraces AMQP 0.9.1 model. Built on top of the RabbitMQ Java client"
:min-lein-version "2.5.1"
:license {:name "Eclipse Public License"}
:dependencies [[org.clojure/clojure "1.7.0"]
[com.rabbitmq/amqp-client "3.5.5"]
[clojurewerkz/support "1.1.0" :exclusions [com.google.guava/guava]]
[clj-http "2.0.0"]
[cheshire "5.5.0"]]
:profiles {:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
:master {:dependencies [[org.clojure/clojure "1.8.0-master-SNAPSHOT"]]}
;; this version of clj-http depends on HTTPCore 4.2.x which
;; some projects (e.g. using Spring's RestTemplate) can rely on,
;; so we test for compatibility with it. MK.
:cljhttp076 {:dependencies [[clj-http "0.7.6"]]}
:dev {:dependencies [[org.clojure/tools.cli "0.3.1" :exclusions [org.clojure/clojure]]]
:resource-paths ["test/resources"]
:plugins [[codox "0.8.10"]]
:codox {:sources ["src/clojure"]
:output-dir "doc/api"}}}
:source-paths ["src/clojure"]
:java-source-paths ["src/java"]
:javac-options ["-target" "1.6" "-source" "1.6"]
:url "http://clojurerabbitmq.info"
:repositories {"sonatype" {:url "http://oss.sonatype.org/content/repositories/releases"
:snapshots false
:releases {:checksum :fail :update :always}}
"sonatype-snapshots" {:url "http://oss.sonatype.org/content/repositories/snapshots"
:snapshots true
:releases {:checksum :fail :update :always}}}
:aliases {"all" ["with-profile" "dev:dev,1.6:dev,cljhttp076"]}
:global-vars {*warn-on-reflection* true}
;;:jvm-opts ["-Xmx512m"]
:test-selectors {:default (fn [m]
(and (not (:performance m))
(not (:edge-features m))
(not (:time-consuming m))
(not (:tls m))))
:http :http
:focus :focus
;; as in, edge rabbitmq server
:edge-features :edge-features
:time-consuming :time-consuming
:performance :performance
:tls :tls
:ci (fn [m] (not (:tls m)))}
:mailing-list {:name "clojure-rabbitmq"
:archive "https://groups.google.com/group/clojure-rabbitmq"
:post "clojure-rabbitmq@googlegroups.com"})