-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
140 lines (128 loc) · 6.99 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
(defproject shale "0.3.4-SNAPSHOT"
:description "A Clojure-backed Selenium hub replacement"
:url "https://github.com/cardforcoin/shale"
:license {:name "MIT License"
:url "http://www.opensource.org/licenses/mit-license.php"}
:dependencies [[amazonica "0.3.84"]
[camel-snake-kebab "0.4.0" :exclusions [org.clojure/clojure]]
[cheshire "5.6.3"]
[clj-http "2.3.0"]
[arohner/clj-kube "0.1.3"]
[clj-wallhack "1.0.1"]
[clj-webdriver "0.6.1" :exclusions [org.clojure/core.cache]]
[cljs-ajax "0.5.3"]
[com.amazonaws/aws-java-sdk-core "1.11.63"]
[com.amazonaws/aws-java-sdk-ec2 "1.11.63"]
[com.brweber2/clj-dns "0.0.2"]
[com.cemerick/url "0.1.1"]
[com.fzakaria/slf4j-timbre "0.3.5"]
[com.stuartsierra/component "0.2.3"]
[com.taoensso/carmine "2.15.1" :exclusions [org.clojure/clojure com.taoensso/encore]]
[com.taoensso/encore "2.87.0" :exclusions [org.clojure/clojure]]
[com.taoensso/timbre "4.8.0"]
[compojure "1.4.0"]
[environ "1.0.0"]
[hiccup "1.0.5"]
[io.aviso/pretty "0.1.19"]
[javax.servlet/servlet-api "2.5"]
[liberator "0.14.0"]
[org.bovinegenius/exploding-fish "0.3.4"]
[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.7.228" :scope "provided"]
[org.clojure/core.match "0.3.0-alpha4"]
[org.clojure/tools.nrepl "0.2.11"]
[org.clojure/tools.reader "1.0.0-beta4"]
[org.slf4j/log4j-over-slf4j "1.7.22"]
[org.slf4j/jul-to-slf4j "1.7.22"]
[org.slf4j/jcl-over-slf4j "1.7.22"]
[org.danielsz/system "0.2.0"]
[overtone/at-at "1.2.0"]
[prismatic/schema "0.3.0"]
[raven-clj "1.5.0"]
[reagent "0.5.1" :exclusions [org.clojure/tools.reader]]
[reagent-forms "0.5.21"]
[reagent-utils "0.1.7"]
[ring/ring-jetty-adapter "1.4.0"]
[secretary "1.2.3"]
[slingshot "0.12.2"]
[sonian/carica "1.1.0" :exclusions [cheshire]]
[venantius/accountant "0.1.7" :exclusions [org.clojure/tools.reader]]]
:exclusions [cheshire]
:scm {:name "git"
:url "http://github.com/cardforcoin/shale"}
:auto-clean false
:main shale.core
:plugins [[lein-environ "1.0.0"]
[lein-cljsbuild "1.1.3"]
[lein-asset-minifier "0.3.2"]]
:test-selectors {:default (complement :integration)
:integration :integration
:all (constantly true)}
:clean-targets ^{:protect false} [:target-path
[:cljsbuild :builds :app :compiler :output-dir]
[:cljsbuild :builds :app :compiler :output-to]]
:source-paths ["src/clj" "src/cljc"]
:resource-paths ["resources" "target/cljsbuild"]
:minify-assets
{:assets
{"resources/public/css/site.min.css" "resources/public/css/site.css"}}
:cljsbuild {:builds {:app {:source-paths ["src/cljs"] ; "src/cljc"
:compiler {:output-to "target/cljsbuild/public/js/app.js"
:output-dir "target/cljsbuild/public/js/out"
:asset-path "/js/out"
:optimizations :none
:pretty-print true}}}}
:profiles {:dev {:dependencies [[ring/ring-mock "0.3.0"]
[ring/ring-devel "1.4.0"]
[prone "1.0.2"]
[org.clojure/tools.trace "0.7.8"]
[lein-figwheel "0.5.0-6"
:exclusions [org.clojure/core.memoize
ring/ring-core
org.clojure/clojure
org.ow2.asm/asm-all
org.clojure/data.priority-map
org.clojure/tools.reader
org.clojure/clojurescript
org.clojure/core.async
org.clojure/tools.analyzer.jvm]]
[org.clojure/tools.nrepl "0.2.12"]
[com.cemerick/piggieback "0.2.1"]
[pjstadig/humane-test-output "0.7.1"]]
:source-paths ["env/dev/clj"]
:plugins [[lein-figwheel "0.5.0-6"
:exclusions [org.clojure/core.memoize
ring/ring-core
org.clojure/clojure
org.ow2.asm/asm-all
org.clojure/data.priority-map
org.clojure/tools.reader
org.clojure/clojurescript
org.clojure/core.async
org.clojure/tools.analyzer.jvm]]]
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]
:figwheel {:http-server-root "public"
:server-port 3449
:nrepl-port 7002
:nrepl-middleware ["cemerick.piggieback/wrap-cljs-repl"]
:css-dirs ["resources/public/css"]}
:env {:dev true}
:cljsbuild {:builds {:app {:source-paths ["env/dev/cljs"]
:compiler {:main "shale.dev"
:source-map true}}}}}
:uberjar {:hooks [minify-assets.plugin/hooks]
:source-paths ["env/prod/clj"]
:prep-tasks ["compile" ["cljsbuild" "once"]]
:env {:production true}
:aot :all
:omit-source true
:cljsbuild {:jar true
:builds {:app
{:source-paths ["env/prod/cljs"]
:compiler
{:optimizations :advanced
:pretty-print false}}}}}}
:deploy-repositories [["releases" :clojars]
["snapshots" :clojars]]
:aot [#"shale\.ext\.*" #"shale\.core"])