11 lines
507 B
Clojure
11 lines
507 B
Clojure
(defproject buchdesmonats "1.0"
|
|
:description "A simple tool to fetch all books of the months from the cthn.de project"
|
|
:url "http://cthn.de/projects/buch_des_monats"
|
|
:license {:name "Eclipse Public License"
|
|
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
|
:dependencies [[org.clojure/clojure "1.5.1"]
|
|
[enlive "1.1.5"]
|
|
[me.raynes/fs "1.4.4"]
|
|
[clj-http "0.9.1"]]
|
|
:main ^:skip-aot buchdesmonats.core
|
|
:profiles {:uberjar {:aot :all}})
|