Skip to content

Commit 77ab994

Browse files
committed
Correct the artifactId of Asset Pipeline Plugin in BOM
Closes gh-999
1 parent aeee081 commit 77ab994

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

grace-bom/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ publishing {
9090
}
9191

9292
for (plugin in grails.plugins) {
93-
String artifactId = plugin.key
93+
String artifactId = (plugin.key == 'asset-pipeline') ? 'asset-pipeline-plugin' : plugin.key
9494
String version = "\${grace-plugin-${plugin.key}.version}"
9595
mkp.dependency {
9696
mkp.groupId 'org.graceframework.plugins'

gradle/grails.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[plugins]
2-
asset-pipeline-plugin = "6.3.0-RC1"
2+
asset-pipeline = "6.3.0-RC1"
33
cache = "6.3.0-RC1"
44
database-migration = "6.3.0-RC1"
55
fields = "6.3.0-RC1"

0 commit comments

Comments
 (0)