From 704935ccebfc430f3e524340accca0be543802b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Tegn=C3=A9r?= Date: Thu, 8 Oct 2020 20:43:22 +0200 Subject: [PATCH] Testing without signing key id. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Johannes Tegnér --- build.gradle | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 800b4d7..1ede83d 100644 --- a/build.gradle +++ b/build.gradle @@ -93,10 +93,9 @@ publishing { } signing { - def signingKeyId = "4ED1648B5E695E6A" def signingKey = findProperty("signingKey") ?: "key" def signingPassword = findProperty("signingPassword") ?: "pass" - useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword) + useInMemoryPgpKeys(signingKey, signingPassword) sign publishing.publications.mavenJava }