rss-thread-watcher/project.clj

12 lines
464 B
Clojure
Raw Normal View History

2023-12-21 00:58:13 +01:00
(defproject rss-thread-watch "0.1.0-SNAPSHOT"
:description "RSS based thread watcher"
:url "http://example.com/FIXME"
:license {:name "AGPL-3.0-only"
:url "https://www.gnu.org/licenses/agpl-3.0.txt"}
:dependencies [[org.clojure/clojure "1.10.0"]
[ring/ring-core "1.8.2"]
[ring/ring-jetty-adapter "1.8.2"]]
:main ^:skip-aot rss-thread-watch.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})