-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.clj
24 lines (21 loc) · 1.12 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
(defproject demo "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.4.0"]
[ring/ring-jetty-adapter "1.1.5"]
[ring/ring-core "1.1.5"] ;; parsing parameters etc
[ring/ring-devel "1.1.5"] ;; dev middleware like stactrace
[hiccup "1.0.1"]
[compojure "1.1.3"]]
:plugins [[lein-cljsbuild "0.2.7"]]
:hooks [leiningen.cljsbuild]
:main "demo.core/-main"
:cljsbuild {:repl-listen "9000",
:crossovers [demo.message]
:builds [{:jar true,
:compiler {:output-to "resources/public/main.js",
:output-dir "resources/public/js"
:optimizations :none,
:pretty-print true}}]})