-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
35 lines (28 loc) · 887 Bytes
/
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
(defproject mvxcvi/test.carly "0.4.2-SNAPSHOT"
:description "Generative test harness for stateful system behavior."
:url "https://github.com/greglook/test.carly"
:license {:name "Public Domain"
:url "http://unlicense.org/"}
:aliases
{"coverage" ["with-profile" "+coverage" "cloverage"]}
:deploy-branches ["master"]
:pedantic? :abort
:dependencies
[[org.clojure/clojure "1.8.0"]
[org.clojure/test.check "0.9.0"]
[mvxcvi/puget "1.0.2"]]
:test-selectors
{:default (complement :concurrent)
:concurrent :concurrent}
:hiera
{:cluster-depth 2
:vertical false
:show-external true
:ignore-ns #{}}
:codox
{:metadata {:doc/format :markdown}
:source-uri "https://github.com/greglook/test.carly/blob/master/{filepath}#L{line}"
:output-path "target/doc/api"}
:profiles
{:coverage
{:plugins [[lein-cloverage "1.0.10"]]}})