-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.clj
145 lines (121 loc) · 4.73 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
(defproject io.logicblocks/salutem "0.1.9-RC4"
:description "Aggregate project for all salutem modules."
:parent-project {:path "parent/project.clj"
:inherit [:scm
:url
:license
:plugins
[:profiles :parent-shared]
:deploy-repositories
:managed-dependencies]}
:plugins [[io.logicblocks/lein-interpolate "0.1.1-RC3"]
[lein-parent "0.3.9"]
[lein-sub "0.3.0"]
[lein-changelog "0.3.2"]
[lein-codox "0.10.8"]]
:sub ["parent"
"core"
"check-fns/data-source"
"check-fns/http-endpoint"
"check-fns"
"."]
:dependencies [[io.logicblocks/salutem.core]
[io.logicblocks/salutem.check-fns]]
:profiles
{:unit
{:aliases {"eftest"
["sub"
"-s" "core:check-fns/data-source:check-fns/http-endpoint"
"with-profile" "unit"
"eftest"]}}
:integration
{:aliases {"eftest"
["sub"
"-s" "check-fns/data-source:check-fns/http-endpoint"
"with-profile" "integration"
"eftest"]}}
:performance
{:aliases {"eftest"
["sub"
"-s" "core"
"with-profile" "performance"
"eftest"]}}
:codox
[:parent-shared
{:dependencies [[io.logicblocks/salutem.core :project/version]
[org.clojure/core.async]
[io.logicblocks/cartus.core]
[io.logicblocks/cartus.null]
[clj-http]
[com.github.seancorfield/next.jdbc]
[tick]]
:source-paths ["core/src"
"check-fns/data-source/src"
"check-fns/http-endpoint/src"]}]
:prerelease
{:release-tasks
[
["vcs" "assert-committed"]
["sub" "change" "version" "leiningen.release/bump-version" "rc"]
["sub" "change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit" "Pre-release version %s [skip ci]"]
["vcs" "tag"]
["sub" "-s" "core:check-fns/data-source:check-fns/http-endpoint:check-fns:." "deploy"]]}
:release
{:release-tasks
[["vcs" "assert-committed"]
["sub" "change" "version" "leiningen.release/bump-version" "release"]
["sub" "-s" "core:check-fns/data-source:check-fns/http-endpoint:check-fns:." "install"]
["changelog" "release"]
["shell" "sed" "-E" "-i.bak" "s/salutem\\.(.+) \"[0-9]+\\.[0-9]+\\.[0-9]+\"/salutem.\\\\1 \"${:version}\"/g" "README.md"]
["shell" "rm" "-f" "README.md.bak"]
["shell" "sed" "-E" "-i.bak" "s/salutem\\.(.+) \"[0-9]+\\.[0-9]+\\.[0-9]+\"/salutem.\\\\1 \"${:version}\"/g" "docs/01-getting-started.md"]
["shell" "sed" "-E" "-i.bak" "s/salutem\\.(.+) \"[0-9]+\\.[0-9]+\\.[0-9]+\"/salutem.\\\\1 \"${:version}\"/g" "docs/02-check-functions.md"]
["shell" "rm" "-f" "docs/01-getting-started.md.bak"]
["shell" "rm" "-f" "docs/02-check-functions.md.bak"]
["codox"]
["shell" "git" "add" "."]
["vcs" "commit" "Release version %s [skip ci]"]
["vcs" "tag"]
["sub" "-s" "core:check-fns/data-source:check-fns/http-endpoint:check-fns:." "deploy"]
["sub" "change" "version" "leiningen.release/bump-version" "patch"]
["sub" "change" "version" "leiningen.release/bump-version" "rc"]
["sub" "change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit" "Pre-release version %s [skip ci]"]
["vcs" "tag"]
["vcs" "push"]]}}
:source-paths []
:test-paths []
:resource-paths []
:codox
{:namespaces [#"^salutem\."]
:metadata {:doc/format :markdown}
:output-path "docs"
:doc-paths ["docs"]
:source-uri "https://github.com/logicblocks/salutem/blob/{version}/{filepath}#L{line}"}
:aliases {"install"
["do"
["sub"
"-s" "core:check-fns/data-source:check-fns/http-endpoint:check-fns"
"install"]
["install"]]
"eastwood"
["sub"
"-s" "core:check-fns/data-source:check-fns/http-endpoint"
"eastwood"]
"cljfmt"
["sub"
"-s" "core:check-fns/data-source:check-fns/http-endpoint"
"cljfmt"]
"kibit"
["sub"
"-s" "core:check-fns/data-source:check-fns/http-endpoint"
"kibit"]
"check"
["sub"
"-s" "core:check-fns/data-source:check-fns/http-endpoint"
"check"]
"bikeshed"
["sub"
"-s" "core:check-fns/data-source:check-fns/http-endpoint"
"bikeshed"]})