jdaugherty commented on code in PR #16077:
URL: https://github.com/apache/grails-core/pull/16077#discussion_r3699727795
##########
build-logic/settings.gradle:
##########
@@ -91,3 +92,10 @@ project(':build-logic').projectDir = file('plugins')
include 'grails-docs-core'
project(':grails-docs-core').projectDir = file('docs-core')
+
+// Due to https://github.com/gradle/gradle/issues/2986 , we can't change the
global exclude for profiles, it must be done everywhere
+for (String pattern in DirectoryScanner.defaultExcludes) {
+ if (pattern.contains('gitignore') || pattern.contains('gitattributes')) {
+ DirectoryScanner.removeDefaultExclude(pattern)
+ }
+}
Review Comment:
It actually is required. If using daemons, it causes an error because
gradle doesn't match the daemon usage properly and these values mismatch.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]