RSSPAPER/project.clj

40 lines
1.5 KiB
Clojure
Raw Normal View History

2021-06-02 01:35:26 -04:00
(defproject rsspaper "1.0.0"
2020-11-04 01:44:42 -05:00
:description "RSSpaper"
:url "https://github.com/tanrax/RSSpaper"
2020-11-03 17:57:47 -05:00
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
2020-11-04 01:25:21 -05:00
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [;; Clojure
2021-06-02 01:35:26 -04:00
[org.clojure/clojure "1.10.3"]
2020-11-04 01:25:21 -05:00
;; Templates
[selmer "1.12.12"]
;; Yaml
[clj-yaml "0.4.0"]
;; JSON encoding
2020-11-04 01:44:42 -05:00
[cheshire "5.9.0"]
2021-07-01 15:59:50 -04:00
;; Date
[clj-time "0.15.2"]
2021-07-29 19:33:02 -04:00
;; Utils dirs
[me.raynes/fs "1.4.6"]
2020-11-04 01:44:42 -05:00
;; Parse RSS/Atom feeds
2021-06-02 01:35:26 -04:00
[remus "0.2.1"]
2021-07-06 17:36:21 -04:00
[org.slf4j/slf4j-log4j12 "1.7.25"]
[log4j/log4j "1.2.12" :exclusions [javax.mail/mail
javax.jms/jms
com.sun.jmdk/jmxtools
com.sun.jmx/jmxri]]
2020-11-04 01:44:42 -05:00
;; Make RSS/Atom feeds
2021-06-28 15:41:46 -04:00
[clj-rss "0.2.7"]]
2020-11-04 01:25:21 -05:00
:plugins [;; DEV TOOLS
;;; Check idiomatic bug
[lein-kibit "0.1.7"]
;;; Check format
2021-06-28 15:41:46 -04:00
[lein-cljfmt "0.6.4"]]
2020-11-04 01:25:21 -05:00
;; ALIAS
:aliases {"check-idiomatic" ["kibit" "src"]
2021-07-18 07:12:59 -04:00
"check-format" ["cljfmt" "check"]
"fix-format" ["cljfmt" "fix"]}
;; LEIN
2020-11-04 01:25:21 -05:00
:main ^:skip-aot rsspaper.core
:aot [rsspaper.core]
2020-11-03 17:57:47 -05:00
:repl-options {:init-ns rsspaper.core})