-
Notifications
You must be signed in to change notification settings - Fork 7
/
project.clj
34 lines (30 loc) · 1.62 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
(defproject metosin/potpuri "0.5.3"
:description "Common stuff missing from the clojure.core."
:url "https://github.com/metosin/potpuri"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo
:comments "same as Clojure"}
:dependencies []
:plugins [[lein-codox "0.10.7"]
[metosin/bat-test "0.4.4"]]
:bat-test {:report [:pretty
{:type :junit :output-to "target/junit.xml"}]}
:source-paths ["src" "target/generated/src"]
:test-paths ["test" "target/generated/test"]
:codox {:output-path "doc"
:source-uri "https://github.com/metosin/potpuri/blob/{version}/{filepath}#L{line}"
:metadata {:doc/format :markdown}}
:profiles {:dev {:plugins [[jonase/eastwood "0.3.12"]]
:dependencies [[org.clojure/clojure "1.9.0"]
[criterium "0.4.6"]
[org.clojure/clojurescript "1.10.520"]]}
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]
;; Test aren't run with old cljs - but new cljs would bring in
;; new tools.reader which doesn't work with old Clojure.
[org.clojure/clojurescript "1.7.228"]]}
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
:1.10 {:dependencies [[org.clojure/clojure "1.10.0"]]}}
:deploy-repositories [["releases" :clojars]]
:aliases {"all" ["with-profile" "dev:dev,1.7:dev,1.8:dev,1.10"]
"test-clj" ["all" "do" ["bat-test"] ["check"]]})