forked from pyr/kinsky
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
16 lines (16 loc) · 864 Bytes
/
project.clj
File metadata and controls
16 lines (16 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject spootnik/kinsky "0.1.17-SNAPSHOT"
:description "Kafka clojure client library"
:plugins [[lein-codox "0.9.1"]]
:url "https://github.com/pyr/kinsky"
:license {:name "MIT License"
:url "https://github.com/pyr/kinsky/tree/master/LICENSE"}
:codox {:source-uri "https://github.com/pyr/kinsky/blob/{version}/{filepath}#L{line}"
:metadata {:doc/format :markdown}}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/core.async "0.2.385"]
[org.apache.kafka/kafka-clients "0.10.0.1"]
[cheshire "5.6.3"]]
:test-selectors {:default (complement :integration)
:integration :integration
:all (constantly true)}
:profiles {:dev {:dependencies [[org.slf4j/slf4j-nop "1.7.22"]]}})