This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
/
project.clj
43 lines (43 loc) · 1.86 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 lamina "0.5.6"
:description "event-driven data structures for clojure"
:min-lein-version "2.0.0"
:dependencies [[org.clojure/tools.logging "0.3.1"]
[org.flatland/useful "0.11.1"]
[potemkin "0.3.11"]
[manifold "0.1.0-beta8"]]
:exclusions [org.clojure/contrib
org.clojure/clojure-contrib]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.7.0-alpha5"]
[criterium "0.4.2"]
[codox-md "0.2.0" :exclusions [org.clojure/clojure]]]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}}
:aliases {"all" ["with-profile" "dev:dev,1.6"]}
:plugins [[codox "0.6.2"]]
:codox {:writer codox-md.writer/write-docs
:include [lamina.core
lamina.trace
lamina.viz
lamina.walk
lamina.executor
lamina.stats
lamina.api
lamina.query
lamina.time]
:output-dir "autodoc"}
:jvm-opts ^:replace ["-server"
"-XX:+UseConcMarkSweepGC"
"-Xmx2g"
"-XX:NewSize=1g"
"-XX:MaxPermSize=256m"]
:repositories {"sonatype-oss-public"
"https://oss.sonatype.org/content/groups/public/"}
:test-selectors {:default #(not (some #{:wiki :benchmark :stress}
(cons (:tag %) (keys %))))
:benchmark :benchmark
:wiki :wiki
:stress #(or (:stress %) (= :stress (:tag %)))
:all (constantly true)}
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo}
:warn-on-reflection true)