forked from clj-commons/aleph
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
36 lines (36 loc) · 1.71 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
(defproject aleph "0.4.1-SNAPSHOT"
: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.Beta5"]
[manifold "0.1.1-SNAPSHOT"]
[byte-streams "0.2.1-SNAPSHOT"]
[potemkin "0.4.1"]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.7.0"]
[criterium "0.4.3"]
[org.clojure/tools.trace "0.7.8"]
#_[codox-md "0.2.0" :exclusions [org.clojure/clojure]]]}}
:codox {:src-dir-uri "https://github.com/ztellman/aleph/tree/0.4.0/"
: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"]
[ztellman/lein-cljfmt "0.1.10"]]
:cljfmt {:indents {#".*" [[:inner 0]]}}
:test-selectors {:default (complement :benchmark)
:benchmark :benchmark
:all (constantly true)}
:jvm-opts ^:replace ["-server"
"-XX:+UseConcMarkSweepGC"
"-Xmx4g"
#_"-XX:+PrintCompilation"
#_"-XX:+UnlockDiagnosticVMOptions"
#_"-XX:+PrintInlining"]
:global-vars {*warn-on-reflection* true})