forked from juxt/yada
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
124 lines (92 loc) · 3.89 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
;; Copyright © 2015, JUXT LTD.
(defproject yada "1.1.0-SNAPSHOT"
:description "A powerful Clojure web library, full HTTP, full async"
:url "http://github.com/juxt/yada"
:license {:name "The MIT License"
:url "http://opensource.org/licenses/MIT"}
:exclusions [com.stuartsierra/component
prismatic/schema
org.clojure/clojure
org.clojure/tools.reader]
:dependencies
[[bidi "1.24.0" :exclusions [ring/ring-core]]
[buddy/buddy-sign "0.9.0"]
[byte-streams "0.2.1-alpha2" :exclusions [clj-tuple]]
[camel-snake-kebab "0.3.2"]
[cheshire "5.5.0"]
[clj-time "0.11.0"]
[hiccup "1.0.5"]
[json-html "0.3.6" :exlusions [com.google.code.findbugs/jsr305]]
[manifold "0.1.2-alpha2"]
[metosin/ring-http-response "0.6.5"]
[metosin/ring-swagger "0.22.4" :exclusions [potemkin com.google.guava/guava com.google.code.findbugs/jsr305]]
[com.google.code.findbugs/jsr305 "3.0.0"]
[prismatic/schema "1.0.4"]
[potemkin "0.4.2" :exclusions [riddley]]
[org.clojure/core.async "0.2.374"]
[org.clojure/data.codec "0.1.0"]
[org.clojure/tools.reader "0.10.0"]
[org.clojure/tools.trace "0.7.9"]
[juxt/clj-index "0.0.2-1"]
;; TODO: Find out where this is being excluded, Schema needs it?
[org.clojure/core.cache "0.6.4"]
[com.cognitect/transit-clj "0.8.285"]
;; Built-in Swagger UI
[org.webjars/swagger-ui "2.1.3"]
]
:pedantic? :abort
:repl-options {:init-ns user
:welcome (println "Type (dev) to start")}
:profiles
{:dev {:main yada.dev.main
:jvm-opts ["-Xms256m" "-Xmx768m" "-server" "-Dio.netty.leakDetectionLevel=advanced"]
:plugins [[lein-cljsbuild "1.0.6"]
;;[lein-less "1.7.5"]
[lein-figwheel "0.3.7" :exclusions [[org.clojure/clojure]
[org.codehaus.plexus/plexus-utils]]]]
:cljsbuild {:builds
{:console {:source-paths ["console/src-cljs"]
:figwheel {:on-jsload "yada.console.core/reload-hook"}
:compiler {:output-to "target/cljs/console.js"
:pretty-print true}}}}
:exclusions [org.clojure/tools.nrepl]
:pedantic? :abort
:dependencies
[[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.170"]
[org.clojure/core.cache "0.6.4"]
[org.clojure/tools.nrepl "0.2.12"] ; otherwise pedantic check fails
[org.clojure/tools.logging "0.3.1"]
[ch.qos.logback/logback-classic "1.1.3"
:exclusions [org.slf4j/slf4j-api]]
[org.slf4j/jul-to-slf4j "1.7.13"]
[org.slf4j/jcl-over-slf4j "1.7.13"]
[org.slf4j/log4j-over-slf4j "1.7.13"]
[com.stuartsierra/component "0.3.1"]
[org.clojure/tools.namespace "0.2.10"]
[org.clojure/data.zip "0.1.1"]
[markdown-clj "0.9.84"]
[ring-mock "0.1.5"]
[aero "0.1.5"]
[juxt.modular/aleph "0.1.4"]
[juxt.modular/bidi "0.9.4" :exclusions [bidi]]
[juxt.modular/stencil "0.1.1"]
[juxt.modular/co-dependency "0.3.0"]
[juxt.modular/test "0.1.0"]
[juxt.modular/template "0.6.3"]
[org.webjars/jquery "2.1.3"]
[org.webjars/bootstrap "3.3.6"]
[org.webjars.bower/material-design-lite "1.0.2" :scope "test"]
[cljsjs/react "0.13.3-1"]
[reagent "0.5.0"]
[re-frame "0.4.1"]
[kibu/pushy "0.3.2"]]
:source-paths ["dev/src"
"examples/phonebook/src"]
:test-paths ["test"
"examples/phonebook/test"]
:resource-paths ["dev/resources"
"examples/phonebook/resources"]}
#_:test
#_{:source-paths ["yada.test/src"]}
})