forked from amperity/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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 "0.3.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 ["master"]
:pedantic? :abort
:plugins
[[lein-codox "0.9.5"]
[lein-cloverage "1.0.9"]]
:dependencies
[[org.clojure/clojure "1.8.0" :scope "provided"]
[org.clojure/tools.logging "0.3.1"]
[environ "1.1.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"]}})