@@ -30,7 +30,7 @@ plugins {
30
30
def isCI = System . getenv(). containsKey(' CI' )
31
31
def isLocal = ! isCI
32
32
def isReproducibleBuild = System . getenv(' SOURCE_DATE_EPOCH' ) != null
33
- if (isReproducibleBuild) {
33
+ if (isReproducibleBuild) {
34
34
gradle. settingsEvaluated {
35
35
logger. warn(' *************** Remote Build Cache Disabled due to Reproducible Build ********************' )
36
36
logger. warn(" Build date will be set to (SOURCE_DATE_EPOCH=${ System.getenv("SOURCE_DATE_EPOCH")} )" )
@@ -57,7 +57,7 @@ buildCache {
57
57
58
58
rootProject. name = ' grails.core.ROOT'
59
59
60
- include (
60
+ include(
61
61
' grails-bootstrap' ,
62
62
' grails-cache' ,
63
63
' grails-codecs-core' ,
@@ -330,7 +330,7 @@ include 'grails-profiles-web-plugin'
330
330
project(' :grails-profiles-web-plugin' ). projectDir = file(' grails-profiles/web-plugin' )
331
331
332
332
// Functional Tests
333
- include (
333
+ include(
334
334
' grails-test-examples-async-events-pubsub-demo' ,
335
335
' grails-test-examples-app1' ,
336
336
' grails-test-examples-app2' ,
@@ -385,7 +385,7 @@ project(':grails-test-examples-cache').projectDir = file('grails-test-examples/c
385
385
project(' :grails-test-examples-views-functional-tests' ). projectDir = file(' grails-test-examples/views-functional-tests' )
386
386
project(' :grails-test-examples-views-functional-tests-plugin' ). projectDir = file(' grails-test-examples/views-functional-tests-plugin' )
387
387
388
- includeBuild (' ./grails-gradle' )
388
+ includeBuild(' ./grails-gradle' )
389
389
390
390
// Due to https://github.com/gradle/gradle/issues/2986 , we can't change the global exclude for profiles, it must be done everywhere
391
391
for (String pattern in DirectoryScanner . defaultExcludes) {
0 commit comments