diff --git a/Makefile b/Makefile index 32afcb3c..bec2cc93 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ JAVA_GEN_VERSION := v0.15.0 TFGEN := pulumi-tfgen-${PACK} PROVIDER := pulumi-resource-${PACK} VERSION := $(shell pulumictl get version) -JAVA_GROUP_ID := com.${ORG}.pulumi +JAVA_GROUP_ID := com.ovhcloud.pulumi JAVA_ARTIFACT_ID := ${ORG} PLATFORM := linux-amd64 diff --git a/sdk/java/build.gradle b/sdk/java/build.gradle index 84f9d47e..262416ac 100644 --- a/sdk/java/build.gradle +++ b/sdk/java/build.gradle @@ -8,7 +8,7 @@ plugins { id("io.github.gradle-nexus.publish-plugin") version "1.1.0" } -group = "com.ovh.pulumi" +group = "com.ovhcloud.pulumi" def resolvedVersion = System.getenv("PACKAGE_VERSION") ?: (project.version == "unspecified" @@ -82,7 +82,7 @@ jar.configure { publishing { publications { mainPublication(MavenPublication) { - groupId = "com.ovh.pulumi" + groupId = "com.ovhcloud.pulumi" artifactId = "ovh" version = resolvedVersion from components.java diff --git a/sdk/java/settings.gradle b/sdk/java/settings.gradle index 3bf570f2..156ea2aa 100644 --- a/sdk/java/settings.gradle +++ b/sdk/java/settings.gradle @@ -10,5 +10,5 @@ pluginManagement { } } -rootProject.name = "com.ovh.pulumi" +rootProject.name = "com.ovhcloud.pulumi" include("lib")