stream/project.clj

18 lines
773 B
Clojure
Raw Normal View History

2020-07-08 21:30:27 +02:00
(defproject stream "0.1.1-SNAPSHOT"
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-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
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})