forked from clj-commons/aleph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
43 lines (43 loc) · 2 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
(defproject aleph "0.4.4-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.11.Final"]
[manifold "0.1.6"]
[byte-streams "0.2.2"]
[potemkin "0.4.3"]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.9.0-alpha14"]
[criterium "0.4.4"]
[cheshire "5.6.3"]
[org.slf4j/slf4j-simple "1.7.24"]
[com.cognitect/transit-clj "0.8.285"]]}}
: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 [[lein-codox "0.9.4"]
[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})