This repository was archived by the owner on Mar 10, 2025. It is now read-only.
File tree 3 files changed +7
-7
lines changed
src/main/groovy/grails/plugin/formfields
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ buildscript {
6
6
maven { url " https://repo.grails.org/grails/core" }
7
7
}
8
8
dependencies {
9
- classpath " org.grails:grails-gradle-plugin:$grailsGradlePluginVersion "
9
+ classpath platform(" org.grails:grails-bom:${ grailsVersion} " )
10
+ classpath " org.grails:grails-gradle-plugin"
10
11
}
11
12
}
12
13
@@ -30,12 +31,14 @@ repositories {
30
31
}
31
32
32
33
dependencies {
34
+ implementation platform(" org.grails:grails-bom:${ grailsVersion} " )
35
+
33
36
compileOnly ' org.springframework.boot:spring-boot-starter-logging'
34
37
compileOnly " org.springframework.boot:spring-boot-starter-actuator"
35
38
compileOnly " org.springframework.boot:spring-boot-autoconfigure"
36
39
compileOnly " org.springframework.boot:spring-boot-starter-tomcat"
37
40
compileOnly " org.grails:grails-plugin-controllers"
38
- compileOnly " org.grails.plugins:gsp: ${ grailsVersion } "
41
+ compileOnly " org.grails.plugins:gsp"
39
42
40
43
testImplementation " org.grails:grails-web-testing-support"
41
44
testImplementation " org.grails:grails-gorm-testing-support"
@@ -49,7 +52,7 @@ dependencies {
49
52
50
53
testRuntimeOnly " net.bytebuddy:byte-buddy:$byteBuddyVersion "
51
54
52
- testImplementation " org.grails:grails-datastore-gorm-hibernate5: $g ormHibernate5Version "
55
+ testImplementation " org.grails:grails-datastore-gorm-hibernate5"
53
56
}
54
57
55
58
tasks. withType(Test ). configureEach {
Original file line number Diff line number Diff line change 1
1
# Mon, 08 Apr 2024 19:48:24 +0000
2
2
projectVersion =6.0.0-SNAPSHOT
3
3
grailsVersion =7.0.0-SNAPSHOT
4
- grailsGradlePluginVersion =7.0.0-SNAPSHOT
5
- grailsScaffoldingVersion =2.1.0
6
- gormHibernate5Version =9.0.0-SNAPSHOT
7
4
joddWotVersion =3.3.8
8
5
byteBuddyVersion =1.14.12
9
6
asciidoc =true
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class FieldsGrailsPlugin extends Plugin {
23
23
24
24
static final String CONSTRAINTS_EVALULATOR_BEAN_NAME = ' validateableConstraintsEvaluator'
25
25
26
- def grailsVersion = ' 5.0 > *'
26
+ def grailsVersion = ' 7.0.0-SNAPSHOT > *'
27
27
28
28
def loadAfter = [' domainClass' ]
29
29
You can’t perform that action at this time.
0 commit comments