-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
50 lines (49 loc) · 1.9 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
(defproject wiki "2.0"
:dependencies [[org.clojure/clojure "1.9.0"]
[version-clj "0.1.2"]
;; general
[com.stuartsierra/component "0.3.2"]
[clj-time "0.15.0"]
[com.climate/claypoole "1.1.4"]
[toml "0.1.3"]
;; templates
[selmer "1.12.2"]
[hiccup "1.0.5"]
;; html
[enlive "1.1.6"]
[org.apache.commons/commons-lang3 "3.8.1"]
[com.anychart/playground-samples-parser "0.2.6"]
[com.anychart/link-checker "0.2.10"]
[org.jsoup/jsoup "1.11.3"]
[garden "1.3.6"]
;; web
[http-kit "2.3.0"]
[compojure "1.6.1"]
[ring/ring-json "0.4.0"]
[ring/ring-core "1.7.0"]
[com.rpl/specter "1.1.1"]
;; logging
[com.taoensso/timbre "4.10.0"]
;; databases
[com.taoensso/carmine "2.19.1"]
;; there are some problems with new jdbc using sphinx
[org.clojure/java.jdbc "0.7.8"]
[mysql/mysql-connector-java "5.1.36"]
[postgresql/postgresql "9.3-1102.jdbc41"]
[clojure.jdbc/clojure.jdbc-c3p0 "0.3.3"]
[honeysql "0.9.4"]
;; markdown
[markdown-clj "1.0.4"]
;; filesystem
[me.raynes/fs "1.4.6"]
[cpath-clj "0.1.2"]
;; phantom
[org.imgscalr/imgscalr-lib "4.2"]
[criterium "0.4.4"]]
:plugins [[lein-ancient "0.6.10"]
[lein-kibit "0.1.3"]]
:main ^:aot wiki.core
:target-path "target/%s"
:aot :all
:profiles {:dev {:jvm-opts ["-Ddev=true"]}
:uberjar {:jvm-opts []}})