forked from clj-commons/manifold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
29 lines (29 loc) · 1.47 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
(defproject manifold "0.1.9-alpha3"
:description "a compatibility layer for event-driven abstractions"
:license {:name "MIT License"
:url "http://opensource.org/licenses/MIT"}
:url "https://github.com/ztellman/manifold"
:dependencies [[org.clojure/tools.logging "0.3.1" :exclusions [org.clojure/clojure]]
[io.aleph/dirigiste "0.1.6-alpha1"]
[riddley "0.1.15"]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.8.0"]
[criterium "0.4.4"]
[org.clojure/core.async "0.4.474"]]}}
:test-selectors {:default #(not
(some #{:benchmark :stress}
(cons (:tag %) (keys %))))
:benchmark :benchmark
:stress #(or (:stress %) (= :stress (:tag %)))
:all (constantly true)}
:plugins [[lein-codox "0.9.4"]
[lein-jammin "0.1.1"]
[ztellman/lein-cljfmt "0.1.10"]]
:cljfmt {:indents {#".*" [[:inner 0]]}}
:codox {:source-uri "https://github.com/ztellman/manifold/blob/master/{filepath}#L{line}"
:metadata {:doc/format :markdown}
:namespaces [manifold.deferred manifold.stream manifold.time manifold.bus manifold.executor]}
:global-vars {*warn-on-reflection* true}
:jvm-opts ^:replace ["-server"
"-XX:-OmitStackTraceInFastThrow"
"-Xmx2g"
"-XX:NewSize=1g"])