forked from clj-commons/aleph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
41 lines (41 loc) · 1.85 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
(defproject aleph "0.4.2-alpha4"
:description "a framework for asynchronous communication"
:repositories {"jboss" "http://repository.jboss.org/nexus/content/groups/public/"
"sonatype-oss-public" "https://oss.sonatype.org/content/groups/public/"}
:license {:name "MIT License"}
:dependencies [[org.clojure/tools.logging "0.3.1" :exclusions [org.clojure/clojure]]
[io.netty/netty-all "4.1.0.CR7"]
[io.aleph/dirigiste "0.1.3"]
[manifold "0.1.4"]
[byte-streams "0.2.2"]
[potemkin "0.4.3"]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.8.0"]
[criterium "0.4.4"]]}}
:codox {:src-dir-uri "https://github.com/ztellman/aleph/tree/master/"
:src-linenum-anchor-prefix "L"
:defaults {:doc/format :markdown}
:include [aleph.tcp
aleph.udp
aleph.http
aleph.flow]
:output-dir "doc"}
:plugins [[codox "0.8.10"]
[lein-jammin "0.1.1"]
[lein-marginalia "0.9.0"]
[ztellman/lein-cljfmt "0.1.10"]]
:cljfmt {:indents {#".*" [[:inner 0]]}}
:test-selectors {:default #(not
(some #{:benchmark :stress}
(cons (:tag %) (keys %))))
:benchmark :benchmark
:stress :stress
:all (constantly true)}
:jvm-opts ^:replace ["-server"
"-XX:+UseConcMarkSweepGC"
#_"-Xmx256m"
"-Xmx2g"
"-XX:+HeapDumpOnOutOfMemoryError"
#_"-XX:+PrintCompilation"
#_"-XX:+UnlockDiagnosticVMOptions"
#_"-XX:+PrintInlining"]
:global-vars {*warn-on-reflection* true})