important-stories-alert-for.../project.clj

30 lines
1.0 KiB
Clojure
Raw Permalink Normal View History

2022-01-02 10:06:34 +01:00
(defproject isahn "1.0.2"
2019-07-29 20:02:33 +02:00
:description "ISAHN check news stories for Hacker News"
:url "http://example.com/FIXME"
:micense {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
2019-08-04 11:22:57 +02:00
:url "https://github.com/tanrax/important-stories-alert-for-hacker-news"}
2019-07-29 20:02:33 +02:00
:dependencies [
2019-08-04 11:22:57 +02:00
;; Clojure
2019-07-29 20:02:33 +02:00
[org.clojure/clojure "1.10.0"]
2019-08-04 11:22:57 +02:00
;; Get config from .env
2019-08-02 00:01:34 +02:00
[yogthos/config "1.1.4"]
2019-08-04 11:22:57 +02:00
;; Client HTTP
2019-07-29 20:02:33 +02:00
[clj-http "3.10.0"]
2019-08-04 11:22:57 +02:00
;; Parse JSON
2019-07-29 20:02:33 +02:00
[cheshire "5.8.1"]
2019-08-04 11:22:57 +02:00
]
2019-08-04 01:13:30 +02:00
:plugins [
2019-08-04 11:22:57 +02:00
;; Dev Tools
;;; Watch changes
2019-08-04 01:13:30 +02:00
[lein-auto "0.1.3"]
2019-08-04 11:22:57 +02:00
;;; Check idiomatic bug
2019-08-04 01:13:30 +02:00
[lein-kibit "0.1.7"]
2019-08-04 11:22:57 +02:00
;;; Check format
2019-08-04 01:13:30 +02:00
[lein-cljfmt "0.6.4"]
2019-08-04 11:22:57 +02:00
;;; Generate documentation
[lein-codox "0.10.7"]
2019-08-04 01:13:30 +02:00
]
2019-07-29 20:02:33 +02:00
:main ^:skip-aot isahn.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})