diff --git a/grails-bom/build.gradle b/grails-bom/build.gradle index ac530199a46..cca248978ff 100644 --- a/grails-bom/build.gradle +++ b/grails-bom/build.gradle @@ -92,7 +92,11 @@ publishing { artifactId = artifactId.replace("gorm.", "") } mkp.dependency { - mkp.groupId 'org.grails.plugins' + if(artifactId == 'grails-gradle-plugin') { + mkp.groupId 'org.grails' + } else { + mkp.groupId 'org.grails.plugins' + } mkp.artifactId artifactId String versionValue = plugin.value if (!isBuildSnapshot && versionValue.endsWith("-SNAPSHOT")) {