-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
60 lines (44 loc) · 2.02 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
(defproject rt-comm "0.1.0"
:description "Explore clojure real-time communication"
:license {:name "MIT"}
:dependencies [[org.clojure/clojure "1.8.0"]
[com.stuartsierra/component "0.3.1"]
;; [mount "0.1.10"]
[org.clojure/core.async "0.2.374"]
[co.paralleluniverse/quasar-core "0.7.5"]
[co.paralleluniverse/pulsar "0.7.5"]
;; logging/tools
[com.taoensso/timbre "4.3.1"]
[json-html "0.3.9"]
[hiccup "1.0.5"]
[io.aviso/pretty "0.1.20"] ;; REPL formatting
[org.immutant/immutant "2.1.3"]
[aleph "0.4.1"]
[compojure "1.5.0"]
[ring/ring-defaults "0.2.0"]
;; [ring/ring-jetty-adapter "1.1.0"]
[cheshire "5.5.0"]
[hiccups "0.3.0"]
;; [com.andrewmcveigh/cljs-time "0.3.14"]
;; [ch.qos.logback/logback-classic "1.1.3"]
;; [org.clojure/tools.namespace "0.2.11"]
;; [org.clojure/tools.nrepl "0.2.11"]
[com.datomic/datomic-free "0.9.5327" :exclusions [joda-time]]
[datascript "0.13.3"]
[io.nervous/hildebrand "0.4.3"]
]
:java-agents [[co.paralleluniverse/quasar-core "0.7.5"]]
:plugins [[lein-ancient "0.6.10"]
[lein-cljfmt "0.5.3"]
[io.aviso/pretty "0.1.20"]]
:repl-options {;; Default to 30000 (30 seconds)
:timeout 120000
}
:profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.11"]
[org.clojure/tools.nrepl "0.2.11"]]
:source-paths ["dev"]
:jvm-opts [
;; "-Dco.paralleluniverse.pulsar.instrument.auto=all"
"-Dco.paralleluniverse.fibers.verifyInstrumentation=true"
]}}
)