-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.clj
70 lines (56 loc) · 1.89 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
(defproject com.dthume/data.interval-treeset "0.1.3"
:description "Interval Treeset based on finger trees."
:url "http://github.com/dthume/data.interval-tree"
:license {:name "Eclipse Public License 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:scm {:name "git"
:url "github.com/dthume/data.interval-tree"}
:plugins [[codox "0.8.9"]
[lein-marginalia "0.7.1"]
[lein-midje "3.2.1"]
[perforate "0.3.4"]]
:codox {:defaults {:doc/format :markdown}
:output-dir "doc/codox"}
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/data.finger-tree "0.0.3"]
[org.dthume/data.set "0.1.1"]]
:javac-options ["-target" "1.6" "-source" "1.6"]
:perforate
{:benchmark-paths ["src/benchmark/clj"]}
:profiles
{:dev
{:source-paths ["src/dev/clj"]
:dependencies [[midje "1.9.9"]
[perforate "0.3.4"]
[org.clojure/test.check "1.1.0"]
[collection-check "0.1.6"]]}
:benchmark
{:jvm-opts ^:replace
["-XX:+DoEscapeAnalysis"
"-XX:+UseBiasedLocking"]}
:site {}}
:aliases
{"ci-build"
^{:doc "Perform the Continuous Integration build"}
["do" ["clean"] ["check"] ["midje"]]
"dev-bench"
^{:doc "Run development benchmarks"}
["with-profile" "benchmark" "perforate"]
"dev-repl"
^{:doc "Start a clean development NREPL session"}
["do" ["clean"] ["repl"]]
"dev-test"
^{:doc "Run development unit tests"}
["do" ["clean"] ["midje"]]
"dev-doc"
^{:doc "Generate project documentation"}
["with-profile" "site"
["do"
["clean"]
["doc"]
["marg"
"--dir" "doc/walkthrough"
"--name" "data.interval-treeset Walkthrough"
"--desc" "An introduction to data.interval-treeset"
"--file" "walkthrough.html"
"test/com/aphyr/data/test_interval_treeset.clj"]]]})