3
3
VERSION ?= 1.10
4
4
5
5
.inline-deps :
6
- lein inline-deps
6
+ lein with-profile -user inline-deps
7
7
touch .inline-deps
8
8
9
9
inline-deps : .inline-deps
10
10
11
11
test : .inline-deps
12
- lein with-profile +$(VERSION ) ,+plugin.mranderson/config test
12
+ lein with-profile -user, +$(VERSION ) ,+plugin.mranderson/config test
13
13
14
14
cljfmt :
15
- lein with-profile +$(VERSION ) ,+cljfmt,+lein-plugin cljfmt check
15
+ lein with-profile -user, +$(VERSION ) ,+cljfmt,+lein-plugin cljfmt check
16
16
17
17
eastwood :
18
- lein with-profile +$(VERSION ) ,+eastwood eastwood
18
+ lein with-profile -user, +$(VERSION ) ,+eastwood eastwood
19
19
20
20
kondo :
21
21
lein with-profile -dev,+$(VERSION ) ,+clj-kondo run -m clj-kondo.main --lint src
@@ -27,14 +27,14 @@ kondo:
27
27
BUMP ?= patch
28
28
29
29
release :
30
- lein with-profile +$(VERSION ) ,+lein-plugin release $(BUMP )
30
+ lein with-profile -user, +$(VERSION ) ,+lein-plugin release $(BUMP )
31
31
32
32
# Deploying requires the caller to set environment variables as
33
33
# specified in project.clj to provide a login and password to the
34
34
# artifact repository.
35
35
36
36
deploy : .inline-deps
37
- lein with-profile +$(VERSION ) ,+plugin.mranderson/config,+lein-plugin deploy clojars
37
+ lein with-profile -user, +$(VERSION ) ,+plugin.mranderson/config,+lein-plugin deploy clojars
38
38
39
39
clean :
40
40
lein clean
0 commit comments