-
Notifications
You must be signed in to change notification settings - Fork 9
/
project.clj
22 lines (22 loc) · 1.07 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
(defproject ldncljweb "0.1.0-SNAPSHOT"
:description "FIXME: write this!"
:dependencies [[org.clojure/clojure "1.3.0"]
[noir "1.2.1"]
[enlive "1.0.0"]
[congomongo "0.1.9"]
[clj-time "0.4.2"]
;; ClojureScript
[jayq "0.1.0-alpha2"]
;; [fetch "0.1.0-alpha2"]
[cheshire "4.0.0"]
[clj-http "0.4.3"]]
:dev-dependencies [[lein-cljsbuild "0.0.13"]] ; cljsbuild plugin
:cljsbuild {:source-path "src-cljs"
:compiler {:output-to "resources/public/js/cljs.js"
:optimizations :simple
:pretty-print true
;; :externs ["externs/jquery.js"]
}
}
:main ldncljweb.server
:aot [ldncljweb.tools.add-announcement])