2019-01-24 23:14:05 +01:00
|
|
|
(defproject buchdesmonats "1.6"
|
2016-09-29 21:02:10 +02:00
|
|
|
:description "A simple tool to fetch all book of the month covers from the okoyono.de project."
|
2015-06-09 10:07:48 +02:00
|
|
|
:url "https://git.okoyono.de/mezzomix/buch_des_monats"
|
2014-03-25 23:55:29 +01:00
|
|
|
:license {:name "MIT License"
|
|
|
|
:url "http://opensource.org/licenses/MIT"}
|
2019-01-24 23:14:05 +01:00
|
|
|
:dependencies [[org.clojure/clojure "1.10.0"]
|
2018-07-13 23:29:37 +02:00
|
|
|
[org.clojure/tools.logging "0.4.1"]
|
2015-12-30 00:00:24 +01:00
|
|
|
[enlive "1.1.6"]
|
2019-01-24 23:14:05 +01:00
|
|
|
[me.raynes/fs "1.4.6"] ;; R.I.P. Anthony
|
|
|
|
[clj-http "3.9.1"]]
|
2014-03-24 21:55:07 +01:00
|
|
|
:main ^:skip-aot buchdesmonats.core
|
|
|
|
:profiles {:uberjar {:aot :all}})
|
2015-06-09 10:07:48 +02:00
|
|
|
|