From fabca3ffae063600ae9aaa263a62665f50661853 Mon Sep 17 00:00:00 2001 From: Louis CAD Date: Tue, 17 Dec 2024 14:32:15 +0100 Subject: [PATCH] chore: Switch maven group and add clarifying comments --- .../kotlin/com/infomaniak/gradle/plugins/PublishPlugin.kt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/buildTools/gradle/src/main/kotlin/com/infomaniak/gradle/plugins/PublishPlugin.kt b/buildTools/gradle/src/main/kotlin/com/infomaniak/gradle/plugins/PublishPlugin.kt index 8d37585f..3d1d5ecf 100644 --- a/buildTools/gradle/src/main/kotlin/com/infomaniak/gradle/plugins/PublishPlugin.kt +++ b/buildTools/gradle/src/main/kotlin/com/infomaniak/gradle/plugins/PublishPlugin.kt @@ -33,8 +33,11 @@ class PublishPlugin : Plugin { // Create the PublishExtension and add it to the project val extension = target.extensions.create(PublishExtension.EXTENSION_NAME) - // target.group = "com.github.Infomaniak.multiplatform-SwissTransfer" // TODO Do not put this in production - target.group = "com.github.infomaniak.multiplatform_swisstransfer" + // We use the group just below to match jitpack convention (based on GitHub repo id) + target.group = "com.github.Infomaniak.multiplatform-SwissTransfer" + + // This is the group name we are going to use in the future. + // target.group = "com.github.infomaniak.multiplatform_swisstransfer" //TODO: Use that once we host this out of jitpack.io target.version = Versions.mavenVersionName target.afterEvaluate {