Skip to content

Commit 06335f9

Browse files
authored
fix grails-bom maven group/artifact for io.micronaut.spring:micronaut-spring and org.grails:grails-gradle-plugin (#13737)
1 parent 9ba06e3 commit 06335f9

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ ext {
6060
'micronautSpring' : [version: micronautSpringVersion,
6161
group : 'io.micronaut.spring',
6262
names : ['micronaut-spring'],
63-
modules: ['spring', 'context', 'boot', 'web', 'boot-annotation', 'annotation', 'web-annotation']
63+
modules: ['', 'context', 'boot', 'web', 'boot-annotation', 'annotation', 'web-annotation']
6464
],
6565
'mongodb' : [version: mongodbJavaDriverVersion,
6666
group : 'org.mongodb',

grails-bom/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,11 @@ publishing {
9292
artifactId = artifactId.replace("gorm.", "")
9393
}
9494
mkp.dependency {
95-
mkp.groupId 'org.grails.plugins'
95+
if(artifactId == 'grails-gradle-plugin') {
96+
mkp.groupId 'org.grails'
97+
} else {
98+
mkp.groupId 'org.grails.plugins'
99+
}
96100
mkp.artifactId artifactId
97101
String versionValue = plugin.value
98102
if (!isBuildSnapshot && versionValue.endsWith("-SNAPSHOT")) {

0 commit comments

Comments
 (0)