@@ -7,35 +7,35 @@ test/resources/cider/nrepl/clojuredocs/export.edn:
7
7
curl -o $@ https://github.com/clojure-emacs/clojuredocs-export-edn/raw/master/exports/export.compact.edn
8
8
9
9
.inline-deps :
10
- lein inline-deps
10
+ lein with-profile -user inline-deps
11
11
touch .inline-deps
12
12
13
13
inline-deps : .inline-deps
14
14
15
15
test : .inline-deps test/resources/cider/nrepl/clojuredocs/export.edn
16
- lein with-profile +$(CLOJURE_VERSION ) ,+test,+plugin.mranderson/config test
16
+ lein with-profile -user, +$(CLOJURE_VERSION ) ,+test,+plugin.mranderson/config test
17
17
18
18
quick-test :
19
- lein with-profile +$(CLOJURE_VERSION ) ,+test test
19
+ lein with-profile -user, +$(CLOJURE_VERSION ) ,+test test
20
20
21
21
eastwood :
22
- lein with-profile +$(CLOJURE_VERSION ) ,+eastwood eastwood
22
+ lein with-profile -user, +$(CLOJURE_VERSION ) ,+eastwood eastwood
23
23
24
24
cljfmt :
25
- lein with-profile +$(CLOJURE_VERSION ) ,+cljfmt cljfmt check
25
+ lein with-profile -user, +$(CLOJURE_VERSION ) ,+cljfmt cljfmt check
26
26
27
27
kondo :
28
- lein with-profile -dev,+clj-kondo run -m clj-kondo.main --lint src
28
+ lein with-profile -user,- dev,+clj-kondo run -m clj-kondo.main --lint src
29
29
30
30
cloverage :
31
- lein with-profile +$(CLOJURE_VERSION ) ,+cloverage cloverage
31
+ lein with-profile -user, +$(CLOJURE_VERSION ) ,+cloverage cloverage
32
32
33
33
install : .inline-deps
34
- lein with-profile +$(CLOJURE_VERSION ) ,+plugin.mranderson/config install
34
+ lein with-profile -user, +$(CLOJURE_VERSION ) ,+plugin.mranderson/config install
35
35
36
36
smoketest : install
37
37
cd test/smoketest && \
38
- lein with-profile +$(CLOJURE_VERSION) uberjar && \
38
+ lein with-profile -user, +$(CLOJURE_VERSION) uberjar && \
39
39
java -jar target/smoketest-0.1.0-SNAPSHOT-standalone.jar
40
40
41
41
@@ -52,14 +52,14 @@ detect_timeout:
52
52
BUMP ?= patch
53
53
54
54
release :
55
- lein with-profile +$(CLOJURE_VERSION ) release $(BUMP )
55
+ lein with-profile -user, +$(CLOJURE_VERSION ) release $(BUMP )
56
56
57
57
# Deploying requires the caller to set environment variables as
58
58
# specified in project.clj to provide a login and password to the
59
59
# artifact repository.
60
60
61
61
deploy : .inline-deps
62
- lein with-profile +$(CLOJURE_VERSION ) ,+plugin.mranderson/config deploy clojars
62
+ lein with-profile -user, +$(CLOJURE_VERSION ) ,+plugin.mranderson/config deploy clojars
63
63
64
64
clean :
65
65
lein clean
0 commit comments