From 4b30ce12c9a4d139ae7023f57188110b3f7c8d24 Mon Sep 17 00:00:00 2001 From: Speiger Date: Fri, 29 Mar 2024 22:35:44 +0100 Subject: [PATCH] Upgraded thread workers and disable GPG temporarly. --- build.gradle | 7 ++++--- gradle.properties | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index d5ee365..fe7a342 100644 --- a/build.gradle +++ b/build.gradle @@ -283,9 +283,10 @@ def isPublishingToMavenCentral() { } signing { - required { isPublishingToMavenCentral() } - useGpgCmd() - sign configurations.archives + if(isPublishingToMavenCentral()) { + useGpgCmd() + sign configurations.archives + } } publishing { diff --git a/gradle.properties b/gradle.properties index f461305..0420d83 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ org.gradle.jvmargs=-Xmx3G maxMemory = 1024m -testThreads = 2 \ No newline at end of file +testThreads = 4 \ No newline at end of file