-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.clj
32 lines (27 loc) · 1.14 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
(defproject org.jank-lang "0.1.0-SNAPSHOT"
:url "https://jank-lang.org"
:dependencies [[org.clojure/clojure "1.12.0-alpha1"]
; Page building.
[garden "1.3.10"]
[hiccup "2.0.0-alpha2"]
[hickory "0.7.1"]
[markdown-clj "1.11.4"]
[org.clojure/data.json "2.4.0"]
[dali/dali "1.0.2"]
; Optimized alternatives.
[stringer "0.4.1"]
; HTTP
[ring/ring-core "2.0.0-alpha1"]
[ring/ring-devel "2.0.0-alpha-1"]
[ring/ring-jetty-adapter "2.0.0-alpha1"]
[compojure "1.7.0"]
; Utils.
[com.taoensso/timbre "5.2.1"]
[com.fzakaria/slf4j-timbre "0.3.21-6-9f1d565-SNAPSHOT"]
[clj-commons/fs "1.6.310"]
[clojure.java-time "1.1.0"]
[org.apache.commons/commons-text "1.10.0"]]
:main ^:skip-aot org.jank-lang
:target-path "target/%s"
:profiles {:uberjar {:aot :all
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]}})