-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.clj
22 lines (22 loc) · 1.12 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
(defproject units2 "2.7"
:description "A Clojure library for units of measurement."
:url "https://github.com/mfey/units2"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0-alpha16"]
[org.clojure/spec.alpha "0.1.123"]
[clj-science/jscience "4.3.1"]
;[javax.measure/unit-api "1.0"]
;[tec.units/unit-ri "1.0.3"]
[org.clojure/test.check "0.9.0"]
; [org.apache.commons/commons-math3 "3.5"] ; optional: for integrals
; [incanter "1.5.6"] ; optional: for derivatives/integrals
]
:plugins [[lein-marginalia "0.9.0"]
[lein-cloverage "1.0.9"] ; bash <(curl -s https://codecov.io/bash) -f target/coverage/codecov.json -t token -C commitSHA
[lein-kibit "0.1.5"]
]
;:repl-options {:init (do (require '[units2.core :refer :all])
; (require '[units2.stdlib :refer :all]))}
; :global-vars {*warn-on-reflection* true} ; I'm too forgetful for regular `lein check`
)