stream/project.clj

19 lines
850 B
Clojure
Raw Normal View History

2020-08-02 12:17:36 +02:00
(defproject stream "0.1.1"
2020-07-05 20:12:42 +02:00
:description "the Simple Transmission Emitter And Monitor"
:url "https://github.com/vale981/stream"
: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.10.1"]
2020-07-09 17:45:38 +02:00
[com.github.thjomnx/java-systemd "1.1.0"]
2020-07-05 20:12:42 +02:00
[com.taoensso/timbre "4.10.0"]
2020-07-05 21:43:46 +02:00
[cljstache/cljstache "2.0.6"]
2020-07-06 20:23:43 +02:00
[org.clojure/core.async "1.2.603"]
[slingshot "0.12.2"]
;; [com.github.hypfvieh/dbus-java "3.2.1"]
2020-07-27 21:35:02 +02:00
[org.clojure/data.json "1.0.0"]
2020-07-09 14:10:09 +02:00
[com.taoensso/encore "2.122.0"]]
2020-07-05 20:12:42 +02:00
:main ^:skip-aot stream.core
2020-07-10 10:20:20 +02:00
:plugins [[lein-cloverage "1.1.2"]]
2020-07-05 20:12:42 +02:00
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})