From 0fd421d17e7829070aa80597bc54ffae94ab9fc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Suski?= Date: Tue, 16 Nov 2021 21:46:25 +0100 Subject: [PATCH] Remove nexusPublishing.packageGroup --- build.gradle | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/build.gradle b/build.gradle index 83fb0fe..af55fb2 100644 --- a/build.gradle +++ b/build.gradle @@ -35,19 +35,6 @@ ext { } -nexusPublishing { - packageGroup = project.group - repositories { - sonatype { - username = findProperty("nexusUsername") - password = findProperty("nexusPassword") - } - } - connectTimeout = Duration.ofMinutes(5) - clientTimeout = Duration.ofMinutes(5) -} - - allprojects { repositories { @@ -67,6 +54,18 @@ allprojects { } +nexusPublishing { + repositories { + sonatype { + username = findProperty("nexusUsername") + password = findProperty("nexusPassword") + } + } + connectTimeout = Duration.ofMinutes(5) + clientTimeout = Duration.ofMinutes(5) +} + + subprojects { subproject ->