-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
31 lines (31 loc) · 1.38 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
(defproject sneakycode "0.1.0-SNAPSHOT"
:description "sneakycode blog"
:url "http://sneakycode.net"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.9.0"]
[stasis "2.3.0"]
[ring "1.6.3"]
[org.clojure/tools.logging "0.4.0"]
[hiccup "1.0.5"]
[me.raynes/cegdown "0.1.1"]
[cheshire "5.8.0"]
[clj-time "0.14.2"]
[clj-rss "0.2.3"]
[me.raynes/fs "1.4.6"]
[clj-http "3.7.0"]
[com.novemberain/pantomime "2.9.0"]
[clygments "1.0.0"]
[enlive "1.1.6"]
[org.clojure/clojurescript "1.10.339" :exclusions [[com.google.code.findbugs/jsr305]
[com.google.code.gson/gson]]]
[rum "0.11.3"]
[com.andrewmcveigh/cljs-time "0.5.2"]]
:plugins [[lein-ring "0.12.4"]]
:ring {:handler sneakycode.core/app
:init sneakycode.core/app-init
:auto-refresh? true}
:jvm-opts ["--add-opens=java.base/java.lang=ALL-UNNAMED" "--add-opens=java.base/java.time=ALL-UNNAMED"]
:resource-paths ["resources"]
:aliases {"dev" ["ring" "server-headless" "4321"]
"build" ["run" "-m" "sneakycode.deploy"]})