Gregor, aren't you well?

This commit is contained in:
Arne Schlüter 2019-01-14 11:29:03 +01:00
commit 887dafd7fc
12 changed files with 1202 additions and 0 deletions

14
project.clj Normal file
View file

@ -0,0 +1,14 @@
(defproject heyarne.frantisek-kafka "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/tools.cli "0.4.1"]
[com.taoensso/timbre "4.10.0"]
[clj-http "3.9.1"]
[com.knrz/dotenv "0.1.0"]]
:main heyarne.frantisek-kafka.samsa
:target-path "target/%s"
:min-lein-version "2.8.0"
:profiles {:uberjar {:aot :all}})