This is an automated email from the ASF dual-hosted git repository. jamesfredley pushed a commit to branch 7.0.x in repository https://gitbox.apache.org/repos/asf/grails-forge.git
The following commit(s) were added to refs/heads/7.0.x by this push: new 7b33a29 Revert "Make rat task lazily configured" 7b33a29 is described below commit 7b33a2945ffca731c2b59c6cb5f19edcefef1234 Author: James Fredley <jamesfred...@users.noreply.github.com> AuthorDate: Tue May 6 13:28:20 2025 -0400 Revert "Make rat task lazily configured" This reverts commit 18587e70ae3e4454fd773176f299a0b26b243075. --- gradle/rat-root-config.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle/rat-root-config.gradle b/gradle/rat-root-config.gradle index c19a730..628fb92 100644 --- a/gradle/rat-root-config.gradle +++ b/gradle/rat-root-config.gradle @@ -17,8 +17,8 @@ apply plugin: 'org.nosphere.apache.rat' -tasks.named('rat').configure { - it.excludes = [ +tasks.named('rat') { + excludes = [ '.asf.yaml', // ASF metadata for github integration excluded from src zip '**/build/**', // Gradle generated build directories '**/.gradle/**', '**/wrapper/**', 'gradlew*', // gradle wrapper files excluded from src zip