12 lines
464 B
Clojure
12 lines
464 B
Clojure
|
(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}})
|