-
Notifications
You must be signed in to change notification settings - Fork 18
/
project.clj
64 lines (49 loc) · 1.12 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
(defproject lein-monolith.example/all "MONOLITH"
:description "Overarching example project."
:aliases
{"version+" ["version"]
"version++" ["version+"]}
:plugins
[[lein-monolith "1.10.1"]
[lein-pprint "1.2.0"]]
:dependencies
[[org.clojure/clojure "1.10.1"]]
:managed-dependencies
[[amperity/greenlight "0.6.0"]
[com.amperity/vault-clj "2.1.583"]]
:test-selectors
{:unit (complement :integration)
:integration :integration}
:test-paths ^:replace
["test/unit"
"test/integration"]
:compile-path
"%s/compiled"
:monolith
{:inherit
[:aliases
:test-selectors
:env]
:inherit-raw
[:test-paths]
:inherit-leaky
[:repositories
:managed-dependencies]
:inherit-leaky-raw
[:compile-path]
:project-selectors
{:deployable :deployable
:unstable #(= (first (:version %)) \0)}
:project-dirs
["apps/*"
"libs/**"
"not-found"]
:dependency-sets
{:set-outdated
[[amperity/greenlight "0.7.0"]
[org.clojure/spec.alpha "0.2.194"]]
:set-a
[[amperity/greenlight "0.7.1"]
[org.clojure/spec.alpha "0.3.218"]]}}
:env
{:foo "bar"})