-
Notifications
You must be signed in to change notification settings - Fork 8
/
project.clj
49 lines (44 loc) · 2.59 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
(defproject thalia "0.2.0-SNAPSHOT"
:description "Documentation for Clojure functions, macros, protocols, vars"
:url "http://github.com/jafingerhut/thalia"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.0"]]
;;:dependencies [[org.clojure/clojure "1.10.0-master-SNAPSHOT"]]
;; Version 1.5.7 of org.flatland/ordered causes some test failures.
;; These are fixed with this PR:
;; https://github.com/clj-commons/ordered/pull/42
;; Version 0.2.4 of org.clojure/data.int-map causes some test
;; failures. These are fixed with the patch proposed on this
;; ticket: https://dev.clojure.org/jira/browse/DIMAP-16
;; Version 0.0.18 of org.clojure/data.avl causes some test failures.
;; These are fixed with the patch proposed on this ticket:
;; https://dev.clojure.org/jira/browse/DAVL-10
:profiles {:dev {:dependencies [[cheshire "5.0.2"]
[me.raynes/fs "1.4.3"]
;;[org.clojure/core.memoize "0.5.7"]
[org.clojure/core.memoize "0.7.1"]
;; 3rd party Clojure collection libs
[org.clojure/data.avl "0.0.18"]
[org.clojure/data.int-map "0.2.4"]
;;[org.clojure/data.int-map "0.2.5-SNAPSHOT"]
[org.clojure/data.priority-map "0.0.10"]
[org.clojure/core.rrb-vector "0.0.13"]
[org.flatland/ordered "1.5.7"]
;;[org.flatland/ordered "1.5.8-SNAPSHOT"]
[org.flatland/useful "0.11.5"]
]
;; The following line interferes with creating
;; small JAR files via 'lein install/jar/deploy',
;; so only include it in the dev profile.
:main thalia.core}
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
:1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}
:1.10 {:dependencies [[org.clojure/clojure "1.10.0"]]}
}
:aliases {"test-all" ["with-profile" "dev,1.5:dev,1.6:dev,1.7:dev,1.8:dev,1.9:dev,1.10" "test"]}
;;:repl-options {:init-ns user}
:resource-paths ["resource"])