forked from ztellman/lamina
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
44 lines (44 loc) · 1.97 KB
/
Copy pathproject.clj
File metadata and controls
44 lines (44 loc) · 1.97 KB
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
44
(defproject lamina "0.5.0"
:description "event-driven data structures for clojure"
:min-lein-version "2.0.0"
:dependencies [[org.clojure/tools.logging "0.2.4"]
[org.flatland/useful "0.9.0"]
[potemkin "0.3.2"]]
:exclusions [org.clojure/contrib
org.clojure/clojure-contrib]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.5.1"]
[criterium "0.4.1"]
[codox-md "0.2.0" :exclusions [org.clojure/clojure]]]}
:1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]}
:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0-master-SNAPSHOT"]]}}
:aliases {"all" ["with-profile" "1.6,dev:1.3,dev:dev:1.4,dev"]}
: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)