-
Notifications
You must be signed in to change notification settings - Fork 16
/
project.clj
32 lines (32 loc) · 2.11 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
(defproject ymilky/franzy "0.0.2-SNAPSHOT"
:description "Clojure Kafka client with support for Kafka producer, consumer, rebalancing, administration, and validation."
:url "https://github.com/ymilky/franzy"
:author "ymilky and others, but see README"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:repositories {"snapshots" {:url "https://clojars.org/repo"
:username :env
:password :env
:sign-releases false}
"releases" {:url "https://clojars.org/repo"
:username :env
:password :env
:sign-releases false}}
:dependencies [[org.clojure/clojure "1.8.0"]
[prismatic/schema "1.0.5"]
[org.apache.kafka/kafka-clients "0.9.0.1"]
[ymilky/franzy-common "0.0.2-SNAPSHOT"]]
:plugins [[lein-codox "0.9.4"]]
:codox {:metadata {:doc/format :markdown}
:doc-paths ["README.md"]
:output-path "doc/api"}
:profiles {:dev
{:dependencies [[midje "1.7.0"]
[com.taoensso/timbre "4.3.1"]]
:plugins [[lein-midje "3.2"]
[lein-set-version "0.4.1"]
[lein-update-dependency "0.1.2"]
[lein-pprint "1.1.1"]]}
:reflection-check {:global-vars {*warn-on-reflection* true
*assert* false
*unchecked-math* :warn-on-boxed}}})