File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ plugins {
88
99version = projectVersion
1010group = ' org.grails.plugins'
11+
1112ext. set(' grailsVersion' , libs. versions. grails. asProvider(). get())
1213ext. set(' isReleaseVersion' , ! version. toString(). endsWith(' -SNAPSHOT' ))
1314ext. set(' isSnapshot' , ! isReleaseVersion)
@@ -58,11 +59,13 @@ dependencies {
5859tasks. withType(Test ). configureEach {
5960 useJUnitPlatform()
6061 testLogging {
61- events ' passed' , ' skipped' , ' failed'
62+ events( ' passed' , ' skipped' , ' failed' )
6263 }
6364}
6465
65- apply from : layout. projectDirectory. file(' gradle/java-config.gradle' )
66- apply from : layout. projectDirectory. file(' gradle/grails-plugin-config.gradle' )
67- apply from : layout. projectDirectory. file(' gradle/documentation-config.gradle' )
68- apply from : layout. projectDirectory. file(' gradle/publishing.gradle' )
66+ apply {
67+ from layout. projectDirectory. file(' gradle/java-config.gradle' )
68+ from layout. projectDirectory. file(' gradle/grails-plugin-config.gradle' )
69+ from layout. projectDirectory. file(' gradle/documentation-config.gradle' )
70+ from layout. projectDirectory. file(' gradle/publishing.gradle' )
71+ }
You can’t perform that action at this time.
0 commit comments