Skip to content

Commit 6852e51

Browse files
Update .PHONY, allow gradle daemon
1 parent b61e72c commit 6852e51

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Makefile

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.POSIX:
2-
.PHONY: clean distclean build
2+
.PHONY: init clean distclean build-openssl build publish-local-snapshot \
3+
publish-local-release publish-remote-snapshot public-remote-release
34
GRADLE = ./gradlew
45

56
init:
@@ -19,7 +20,7 @@ build:
1920

2021
publish-local-snapshot:
2122
@ $(collect-signing-info) \
22-
$(GRADLE) --no-daemon \
23+
$(GRADLE) \
2324
-PpublishSnapshot=true \
2425
-PpublishLocal=true \
2526
-PsigningKeyId="$$gpgKeyId" \
@@ -29,7 +30,7 @@ publish-local-snapshot:
2930

3031
publish-local-release:
3132
@ $(collect-signing-info) \
32-
$(GRADLE) --no-daemon \
33+
$(GRADLE) \
3334
-PpublishSnapshot=false \
3435
-PpublishLocal=true \
3536
-PsigningKeyId="$$gpgKeyId" \
@@ -40,7 +41,7 @@ publish-local-release:
4041
publish-remote-snapshot:
4142
@ $(collect-signing-info) \
4243
$(collect-nexus-info) \
43-
$(GRADLE) --no-daemon \
44+
$(GRADLE) \
4445
-PpublishSnapshot=true \
4546
-PpublishLocal=false \
4647
-PsigningKeyId="$$gpgKeyId" \
@@ -53,7 +54,7 @@ publish-remote-snapshot:
5354
publish-remote-release:
5455
@ $(collect-signing-info) \
5556
$(collect-nexus-info) \
56-
$(GRADLE) --no-daemon \
57+
$(GRADLE) \
5758
-PpublishSnapshot=false \
5859
-PpublishLocal=false \
5960
-PsigningKeyId="$$gpgKeyId" \

0 commit comments

Comments
 (0)