File tree Expand file tree Collapse file tree 2 files changed +8
-13
lines changed Expand file tree Collapse file tree 2 files changed +8
-13
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ apply plugin: 'groovy'
66apply plugin : ' org.apache.grails.gradle.grails-plugin'
77apply plugin : ' org.apache.grails.gradle.grails-publish'
88
9+ version = projectVersion
910group = ' org.grails.plugins'
1011
1112repositories {
@@ -30,24 +31,18 @@ ext {
3031}
3132
3233dependencies {
33- compileOnly ' org.springframework.boot:spring-boot-starter-logging'
34- compileOnly ' org.springframework.boot:spring-boot-starter-validation'
35- compileOnly ' org.springframework.boot:spring-boot-autoconfigure'
36- compileOnly ' org.apache.grails:grails-core'
37- testImplementation ' org.apache.grails:grails-testing-support-web'
38- }
34+ compileOnly platform(" org.apache.grails:grails-bom:$grailsVersion " )
35+ compileOnly ' org.apache.grails:grails-dependencies-starter-web'
3936
40- java {
41- withSourcesJar()
42- withJavadocJar()
43- sourceCompatibility = JavaVersion . toVersion(javaVersion)
37+ testImplementation platform(" org.apache.grails:grails-bom:$grailsVersion " )
38+ testImplementation ' org.apache.grails:grails-dependencies-starter-web'
39+ testImplementation ' org.apache.grails:grails-testing-support-web'
4440}
4541
4642tasks. withType(Test ). configureEach {
4743 useJUnitPlatform()
4844 testLogging {
49- events ' failed'
50- exceptionFormat ' full'
45+ events ' passed' , ' skipped' , ' failed'
5146 }
5247}
5348groovydoc {
Original file line number Diff line number Diff line change 1- version =7.0.0-SNAPSHOT
1+ projectVersion =7.0.0-SNAPSHOT
22grailsVersion =7.0.0-SNAPSHOT
33
44javaVersion =17
You can’t perform that action at this time.
0 commit comments