-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
21 lines (19 loc) · 880 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject nosoup-clj "0.1.2"
:description "Site generator for nosoupforyou.com"
:url "https://github.com/edporras/nosoup-clj/"
:license {:name "MIT"
:url "https://opensource.org/licenses/mit-license.php"}
:dependencies [[org.clojure/clojure "1.11.4"]
[org.clojure/tools.cli "1.1.230"]
[hiccup "1.0.5"]
[ring/ring-codec "1.2.0"]
[clojure.java-time/clojure.java-time "1.4.2"]
[sitemap "0.4.0"]
[org.clj-commons/digest "1.4.100"]
[com.taoensso/timbre "6.5.0"]]
:main ^:skip-aot nosoup-clj.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}
:dev {:dependencies [[babashka/fs "0.5.22"]
[hickory "0.7.1"]
[org.clojure/test.check "1.1.1"]]}})