-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproject.clj
20 lines (18 loc) · 962 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject de.otto/zookeeper-example "0.7.1"
:description "Addon to https://github.com/otto-de/tesla-microservice to observe values in zookeeper."
:url "https://github.com/otto-de/tesla-zookeeper-observer"
:license {:name "Apache License 2.0"
:url "http://www.apache.org/license/LICENSE-2.0.html"}
:scm {:name "git"
:url "https://github.com/otto-de/tesla-zookeeper-observer"}
:dependencies [[org.clojure/clojure "1.8.0"]
[de.otto/tesla-microservice "0.7.1"]
[de.otto/tesla-zookeeper-observer "0.1.5"]
[de.otto/tesla-jetty "0.1.3"]
[zookeeper-clj "0.9.4"]
[hiccup "1.0.5"]
[org.slf4j/slf4j-api "1.7.22"]
[ch.qos.logback/logback-core "1.1.8"]
[ch.qos.logback/logback-classic "1.1.8"]]
:profiles {:dev {:plugins [[lein-ancient "0.6.10"]]}}
:main ^:skip-aot de.otto.tesla.zk.example.system)