-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
20 lines (20 loc) · 1017 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject skazka "0.1.0-SNAPSHOT"
:description "Apache Kafka proxy in clojure"
:url "https://github.com/yonatane/skazka"
:license {:name "MIT License"}
:dependencies [[org.clojure/clojure "1.10.1"]
[io.netty/netty-buffer "4.1.49.Final"]
[io.netty/netty-common "4.1.49.Final"]
[io.netty/netty-handler "4.1.49.Final"]
[io.netty/netty-transport "4.1.49.Final"]
[bytegeist "0.1.0-SNAPSHOT"]
[com.taoensso/timbre "4.10.0"]
[com.fzakaria/slf4j-timbre "0.3.19"]]
:profiles {:dev {:source-paths ["dev"]
:dependencies [[org.clojure/tools.namespace "1.0.0"]
[criterium "0.4.5"]
[com.clojure-goes-fast/clj-async-profiler "0.4.1"]
[org.apache.kafka/kafka-clients "2.5.0"]]}}
:repl-options {:init-ns skazka.dev}
:global-vars {*warn-on-reflection* true}
:pedantic? :abort)