-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathproject.clj
25 lines (25 loc) · 1.13 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
(defproject clj-kafka/clj-kafka "0.3.4"
:min-lein-version "2.0.0"
:url "https://github.com/pingles/clj-kafka"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/data.json "0.2.2"]
[org.clojure/tools.logging "0.3.1"]
[org.apache.kafka/kafka_2.10 "0.8.2.1"]
[org.apache.kafka/kafka-clients "0.8.2.1"]
[zookeeper-clj "0.9.3"]]
:exclusions [javax.mail/mail
javax.jms/jms
com.sun.jdmk/jmxtools
com.sun.jmx/jmxri
jline/jline]
:plugins [[lein-expectations "0.0.8"]
[codox "0.8.12"]]
:codox {:src-dir-uri "http://github.com/pingles/clj-kafka/blob/master/"
:src-linenum-anchor-prefix "L"
:defaults {:doc/format :markdown}}
:profiles {:dev {:resource-paths ["dev-resources"]
:dependencies [[commons-io/commons-io "2.4"]
[expectations "1.4.45"]]}}
:description "Clojure wrapper for Kafka's Java API")