Skip to content

Commit 335dc7b

Browse files
authored
build: set grails-bom as platform (#231)
1 parent e564d79 commit 335dc7b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ buildscript {
33
maven { url "https://repo.grails.org/grails/core" }
44
}
55
dependencies {
6-
classpath platform("org.grails:grails-bom:${grailsVersion}")
6+
classpath platform("org.grails:grails-bom:$grailsVersion")
77
classpath "org.grails:grails-gradle-plugin"
88
}
99
}

example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ apply plugin: "org.grails.grails-gsp"
2424
compileJava.options.release = 17
2525

2626
dependencies {
27-
implementation "org.grails:grails-bom:${grailsVersion}"
27+
implementation platform("org.grails:grails-bom:$grailsVersion")
2828

2929
implementation project(':plugin')
3030

plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ apply plugin: 'java-library'
1717
apply plugin: 'org.grails.grails-plugin'
1818

1919
dependencies {
20-
implementation "org.grails:grails-bom:${grailsVersion}"
20+
implementation platform("org.grails:grails-bom:$grailsVersion")
2121

2222
api "org.grails:grails-core"
2323
api "org.grails:grails-web-boot"

0 commit comments

Comments
 (0)