-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathproject.clj
42 lines (34 loc) · 1.32 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
37
38
39
40
41
42
(defproject amperity/greenlight "0.7.3-SNAPSHOT"
:description "Clojure integration testing framework."
:url "https://github.com/amperity/greenlight"
:license {:name "Apache License 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:deploy-branches ["main"]
:aliases
{"coverage" ["with-profile" "+test,+coverage" "cloverage"]}
:pedantic? :warn
:dependencies
[[org.clojure/clojure "1.11.1"]
[org.clojure/tools.cli "1.0.194"]
[org.clojure/data.xml "0.0.8"]
[amperity/envoy "0.3.3"]
[com.stuartsierra/component "1.0.0"]
[org.clj-commons/pretty "2.1"]]
:codox
{:metadata {:doc/format :markdown}
:source-uri "https://github.com/amperity/greenlight/blob/master/{filepath}#L{line}"
:output-path "target/doc/codox"}
:plugins
[[lein-codox "0.10.7" :exclusions [org.clojure/clojure]]
[lein-cloverage "1.1.2"]]
:profiles
{:repl
{:source-paths ["dev"]
:dependencies [[org.clojure/tools.namespace "1.0.0"]]}
:test
{:dependencies [[commons-logging "1.2"]]
:jvm-opts ["-Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.NoOpLog"]}
:coverage
{:dependencies [[commons-logging "1.2"]]
:jvm-opts ["-Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog"
"-Dorg.apache.commons.logging.simplelog.defaultlog=trace"]}})