From d8a01f0874a69f9473c521d13b165b312b53312c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Papp=20=28TWiStErRob=29?= Date: Mon, 8 Apr 2024 21:44:25 +0100 Subject: [PATCH] Fix #509 (broken release) by applying the other option, see https://github.com/mockito/mockito-kotlin/pull/502/files#r1412891601 --- build.gradle | 3 +++ settings.gradle | 2 ++ 2 files changed, 5 insertions(+) diff --git a/build.gradle b/build.gradle index 333afb7e..6bc7ad19 100644 --- a/build.gradle +++ b/build.gradle @@ -33,6 +33,9 @@ tasks.named("githubRelease") { releaseName = project.version } +// Will be used to handle Sonatype staging repositories. +group = 'org.mockito.kotlin' + nexusPublishing { repositories { if (System.getenv("NEXUS_TOKEN_PWD")) { diff --git a/settings.gradle b/settings.gradle index 5bbc1461..8b1bea76 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,2 +1,4 @@ +rootProject.name = 'mockito-kotln-root' + include 'mockito-kotlin' includeBuild 'tests'