2014-03-21 00:42:43 +01:00
|
|
|
(defproject buchdesmonats "1.0"
|
2014-03-25 23:55:29 +01:00
|
|
|
:description "A simple tool to fetch all books of the months from the cthn.de project."
|
2014-03-21 00:42:43 +01:00
|
|
|
:url "http://cthn.de/projects/buch_des_monats"
|
2014-03-25 23:55:29 +01:00
|
|
|
:license {:name "MIT License"
|
|
|
|
:url "http://opensource.org/licenses/MIT"}
|
2014-03-21 00:42:43 +01:00
|
|
|
:dependencies [[org.clojure/clojure "1.5.1"]
|
|
|
|
[enlive "1.1.5"]
|
|
|
|
[me.raynes/fs "1.4.4"]
|
|
|
|
[clj-http "0.9.1"]]
|
2014-03-24 21:55:07 +01:00
|
|
|
:main ^:skip-aot buchdesmonats.core
|
|
|
|
:profiles {:uberjar {:aot :all}})
|