From c43d65a3bacf0f54de1bfa5219b758f4ee6c0b90 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Thu, 26 Sep 2019 10:59:14 +0200 Subject: [PATCH] Fix artifacts groupId Prior to this change, the default groupId "rsocket-java" would be used for all RSocket artifacts. This commit fixes the group name to "io.rsocket" for all Gradle subprojects. This change is reflected in the published POMs and BOM. Signed-off-by: Brian Clozel --- build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle b/build.gradle index b36d49e1a..c354869df 100644 --- a/build.gradle +++ b/build.gradle @@ -43,6 +43,8 @@ subprojects { ext['micrometer.version'] = '1.0.6' ext['assertj.version'] = '3.11.1' + group = "io.rsocket" + googleJavaFormat { toolVersion = '1.6' }