diff --git a/build.gradle b/build.gradle index d5ee3651..fe7a3426 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 f461305d..0420d839 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