-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
25 lines (25 loc) · 1.12 KB
/
project.clj
File metadata and controls
25 lines (25 loc) · 1.12 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
(defproject into-docker/pem-reader "1.0.3-SNAPSHOT"
:description "A lightweight reader for key/certificate files"
:url "https://github.com/into-docker/pem-reader"
:license {:name "MIT"
:url "https://choosealicense.com/licenses/mit"
:year 2015
:key "mit"
:comment "MIT License"}
:dependencies [[org.clojure/clojure "1.10.2" :scope "provided"]]
:profiles {:dev
{:global-vars {*warn-on-reflection* true}}
:kaocha
{:dependencies [[lambdaisland/kaocha "1.0.732"
:exclusions [org.clojure/spec.alpha]]
[lambdaisland/kaocha-cloverage "1.0.75"]]}
:ci
[:kaocha
{:global-vars {*warn-on-reflection* false}}]}
:aliases {"kaocha" ["with-profile" "+kaocha" "run" "-m" "kaocha.runner"]
"ci" ["with-profile" "+ci" "run" "-m" "kaocha.runner"
"--reporter" "documentation"
"--plugin" "cloverage"
"--codecov"
"--no-cov-html"]}
:pedantic? :abort)