This repository was archived by the owner on Mar 10, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
src/main/groovy/grails/plugin/formfields Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ buildscript {
66 maven { url " https://repo.grails.org/grails/core" }
77 }
88 dependencies {
9- classpath " org.grails:grails-gradle-plugin:$grailsGradlePluginVersion "
9+ classpath platform(" org.grails:grails-bom:${ grailsVersion} " )
10+ classpath " org.grails:grails-gradle-plugin"
1011 }
1112}
1213
@@ -30,12 +31,14 @@ repositories {
3031}
3132
3233dependencies {
34+ implementation platform(" org.grails:grails-bom:${ grailsVersion} " )
35+
3336 compileOnly ' org.springframework.boot:spring-boot-starter-logging'
3437 compileOnly " org.springframework.boot:spring-boot-starter-actuator"
3538 compileOnly " org.springframework.boot:spring-boot-autoconfigure"
3639 compileOnly " org.springframework.boot:spring-boot-starter-tomcat"
3740 compileOnly " org.grails:grails-plugin-controllers"
38- compileOnly " org.grails.plugins:gsp: ${ grailsVersion } "
41+ compileOnly " org.grails.plugins:gsp"
3942
4043 testImplementation " org.grails:grails-web-testing-support"
4144 testImplementation " org.grails:grails-gorm-testing-support"
@@ -49,7 +52,7 @@ dependencies {
4952
5053 testRuntimeOnly " net.bytebuddy:byte-buddy:$byteBuddyVersion "
5154
52- testImplementation " org.grails:grails-datastore-gorm-hibernate5: $g ormHibernate5Version "
55+ testImplementation " org.grails:grails-datastore-gorm-hibernate5"
5356}
5457
5558tasks. withType(Test ). configureEach {
Original file line number Diff line number Diff line change 11# Mon, 08 Apr 2024 19:48:24 +0000
22projectVersion =6.0.0-SNAPSHOT
33grailsVersion =7.0.0-SNAPSHOT
4- grailsGradlePluginVersion =7.0.0-SNAPSHOT
5- grailsScaffoldingVersion =2.1.0
6- gormHibernate5Version =9.0.0-SNAPSHOT
74joddWotVersion =3.3.8
85byteBuddyVersion =1.14.12
96asciidoc =true
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class FieldsGrailsPlugin extends Plugin {
2323
2424 static final String CONSTRAINTS_EVALULATOR_BEAN_NAME = ' validateableConstraintsEvaluator'
2525
26- def grailsVersion = ' 5.0 > *'
26+ def grailsVersion = ' 7.0.0-SNAPSHOT > *'
2727
2828 def loadAfter = [' domainClass' ]
2929
You can’t perform that action at this time.
0 commit comments