From d22b977b5d8635862d6e78c51c5916f8924a7885 Mon Sep 17 00:00:00 2001 From: Gianluca Zuddas Date: Sat, 25 Apr 2020 16:53:02 +0100 Subject: [PATCH 1/3] Add package group and stagingProfile Id to the nexusStaging plugin --- build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle b/build.gradle index f4c86fa2..7775cc44 100644 --- a/build.gradle +++ b/build.gradle @@ -19,6 +19,8 @@ nexusStaging { username = loadSecret("SONATYPE_USER") password = loadSecret("SONATYPE_PASS") delayBetweenRetriesInMillis = 5000 + packageGroup = "systems.danger" + stagingProfileId = "danger-kotlin" } allprojects { From 4642b1d3391df82ad4af69bc4eb3584ae1fbfbaf Mon Sep 17 00:00:00 2001 From: Gianluca Zuddas Date: Sat, 25 Apr 2020 17:16:46 +0100 Subject: [PATCH 2/3] Update gradle properties --- gradle.properties | 1 + 1 file changed, 1 insertion(+) diff --git a/gradle.properties b/gradle.properties index 7338e738..a9f07cda 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,3 @@ kotlinVersion=1.3.70 kotlin.code.style=official +systemProp.org.gradle.internal.publish.checksums.insecure=true From 7e903c1bf1134015152498bb4b67a391ab77a17e Mon Sep 17 00:00:00 2001 From: Gianluca Zuddas Date: Sat, 25 Apr 2020 17:45:49 +0100 Subject: [PATCH 3/3] Removing implicit settings --- build.gradle | 2 -- 1 file changed, 2 deletions(-) diff --git a/build.gradle b/build.gradle index 7775cc44..f4c86fa2 100644 --- a/build.gradle +++ b/build.gradle @@ -19,8 +19,6 @@ nexusStaging { username = loadSecret("SONATYPE_USER") password = loadSecret("SONATYPE_PASS") delayBetweenRetriesInMillis = 5000 - packageGroup = "systems.danger" - stagingProfileId = "danger-kotlin" } allprojects {