51 lines
1.4 KiB
Makefile
51 lines
1.4 KiB
Makefile
.PHONY: clean build-debug build-release \
|
|
publish-snapshot-to-local-maven \
|
|
publish-snapshot-to-local-nexus
|
|
GRADLE = ./gradlew
|
|
|
|
clean:
|
|
-rm -rf build
|
|
$(GRADLE) clean
|
|
|
|
build-debug:
|
|
$(GRADLE) assembleDebug
|
|
|
|
build-release:
|
|
$(GRADLE) \
|
|
-PsqlcipherAndroidVersion="$(SQLCIPHER_ANDROID_VERSION)" \
|
|
assembleRelease
|
|
|
|
publish-snapshot-to-local-maven:
|
|
@ $(collect-signing-info) \
|
|
$(GRADLE) \
|
|
-PpublishSnapshot=true \
|
|
-Psigning.keyId="$$gpgKeyId" \
|
|
-Psigning.secretKeyRingFile="$$gpgKeyRingFile" \
|
|
-Psigning.password="$$gpgPassword" \
|
|
publishReleasePublicationToMavenLocal
|
|
|
|
publish-remote-release:
|
|
@ $(collect-signing-info) \
|
|
$(collect-nexus-info) \
|
|
$(GRADLE) \
|
|
-PpublishSnapshot=false \
|
|
-PpublishLocal=false \
|
|
-PdebugBuild=false \
|
|
-PsigningKeyId="$$gpgKeyId" \
|
|
-PsigningKeyRingFile="$$gpgKeyRingFile" \
|
|
-PsigningKeyPassword="$$gpgPassword" \
|
|
-PnexusUsername="$$nexusUsername" \
|
|
-PnexusPassword="$$nexusPassword" \
|
|
-PsqlcipherAndroidVersion="$(SQLCIPHER_ANDROID_VERSION)" \
|
|
sqlcipher:publish
|
|
|
|
collect-signing-info := \
|
|
read -p "Enter GPG signing key id:" gpgKeyId; \
|
|
read -p "Enter full path to GPG keyring file \
|
|
(possibly ${HOME}/.gnupg/secring.gpg)" gpgKeyRingFile; stty -echo; \
|
|
read -p "Enter GPG password:" gpgPassword; stty echo;
|
|
|
|
collect-nexus-info := \
|
|
read -p "Enter Nexus username:" nexusUsername; \
|
|
stty -echo; read -p "Enter Nexus password:" nexusPassword; stty echo;
|