This is an automated email from the ASF dual-hosted git repository. jdaugherty pushed a commit to branch gradle-deprecations in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit 639b1edba804fafa5c447184faa3bf2f2d17f7e5 Author: James Daugherty <[email protected]> AuthorDate: Wed Jun 4 04:37:13 2025 -0400 [skip tests] fix RAT config for gitattribute nesting --- gradle/rat-root-config.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/rat-root-config.gradle b/gradle/rat-root-config.gradle index 42a00872c6..1839dc5c10 100644 --- a/gradle/rat-root-config.gradle +++ b/gradle/rat-root-config.gradle @@ -35,7 +35,7 @@ tasks.named('rat') { 'grails-web-common/src/main/groovy/org/grails/web/json/JSONWriter.java', 'gradle/wrapper/gradle-wrapper.properties', // gradle wrapper excluded from src zip '**/build/**', // Gradle generated build directories - '.gitattributes', // git configuration isn't code + '**/.gitattributes', // git configuration isn't code '**/.gradle/**', '**/wrapper/**', 'gradlew*', // gradle wrapper files excluded from src zip '**/*.html', // html files are only in test '**/resources/*', // exclude test artifacts
