buch_des_monats/project.clj

14 lines
554 B
Clojure
Raw Normal View History

(defproject buchdesmonats "1.3"
2015-06-09 10:07:48 +02:00
:description "A simple tool to fetch all books of the month from the okoyono.de project."
: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"}
:dependencies [[org.clojure/clojure "1.7.0"]
2015-06-10 23:16:32 +02:00
[org.clojure/tools.logging "0.3.1"]
[enlive "1.1.6"]
[me.raynes/fs "1.4.6"]
[clj-http "2.0.0"]]
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