-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
executable file
·69 lines (60 loc) · 2.23 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
(defproject raiseup "0.1.0-SNAPSHOT"
:description "raise up to make to do tool"
:url "http://red-raiseup.rhcloud.com/"
:dependencies [[org.clojure/clojure "1.7.0-alpha5"]
[common.web-clj "1.0.0-SNAPSHOT"]
[cqrs-clj "1.0.0-SNAPSHOT"]
[clj-http "1.0.0"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[hickory "0.5.4"]
[hiccup "1.0.5"]
[markdown-clj "0.9.47"]
;;client
[org.clojure/clojurescript "0.0-2760"]
[om "0.7.3"]
[cljs-ajax "0.3.0"]
[prismatic/dommy "0.1.2"]
;;test
[criterium "0.4.2" :scope "test"]
]
:plugins [[lein-cljsbuild "1.0.4"]
[lein-ancient "0.5.5"]]
:global-vars {*warn-on-reflection* false
*assert* false}
:main main
:repositories [["sonatype" {:url "https://oss.sonatype.org/content/repositories/snapshots"}]
["ibiblio" {:url "http://mirrors.ibiblio.org/maven2/"}]]
:profiles
{:dev {:jvm-opts []
:dependencies [[ring-mock "0.1.5"]
[org.clojure/tools.namespace "0.2.4"]]
:source-paths ["src"]
:plugins []
:repl-options {:port 4001}}
:production
{:jvm-opts ["-Dproduction=true" "-Dconfig=pro.edn"]}
:uberjar {:resources-paths ["resources"] :omit-source true :aot :all }}
:clean-targets ^{:protect false} ["resources/public/auto"]
:resources-path "resources"
:cljsbuild
{:builds
[
{
:source-paths ["cljs-src/notes/"]
:compiler {
:output-to "resources/public/auto/notes.js"
:output-dir "resources/public/auto/notes"
:pretty-print true
:optimizations :none
:source-map true
}},
{
:source-paths ["cljs-src/zjy/"]
:compiler {:output-to "resources/public/auto/zjy.js"
:output-dir "resources/public/auto/zjy"
:pretty-print true
:optimizations :none
:source-map true
}}
]
})