-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathproject.clj
36 lines (29 loc) · 1.08 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
(defproject amperity/envoy "1.0.2-SNAPSHOT"
:description "Clojure environment configuration tracking."
:url "https://github.com/amperity/envoy"
:license {:name "Apache License 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:aliases
{"coverage" ["with-profile" "+test,+coverage" "cloverage"]}
:deploy-branches ["main"]
:pedantic? :abort
:plugins
[[lein-codox "0.10.8"]
[lein-cloverage "1.2.2"]]
:dependencies
[[org.clojure/clojure "1.11.1" :scope "provided"]
[org.clojure/tools.logging "1.2.4"]
[environ "1.2.0"]
[table "0.5.0"]]
:codox
{:metadata {:doc/format :markdown}
:source-uri "https://github.com/amperity/envoy/blob/master/{filepath}#L{line}"
:doc-paths [""]
:output-path "doc/api"}
:profiles
{:test
{:dependencies [[commons-logging "1.2"]]
:jvm-opts ["-Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.NoOpLog"]}
:coverage
{:jvm-opts ["-Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog"
"-Dorg.apache.commons.logging.simplelog.defaultlog=trace"]}})