This is an automated email from the ASF dual-hosted git repository. cmarcum pushed a commit to branch task/geb-testcontainers in repository https://gitbox.apache.org/repos/asf/groovy-geb.git
commit 12a8641e14c2ff17cb3e716563803ef46e679757 Author: Carl Marcum <[email protected]> AuthorDate: Tue Feb 3 14:32:23 2026 -0500 add rat excludes for test resources --- buildSrc/src/main/groovy/geb.groovy-module.gradle | 2 ++ geb.gradle | 3 +++ 2 files changed, 5 insertions(+) diff --git a/buildSrc/src/main/groovy/geb.groovy-module.gradle b/buildSrc/src/main/groovy/geb.groovy-module.gradle index f983eb0e..bcc3fdd6 100644 --- a/buildSrc/src/main/groovy/geb.groovy-module.gradle +++ b/buildSrc/src/main/groovy/geb.groovy-module.gradle @@ -80,5 +80,7 @@ tasks.named('rat') { '**/MANIFEST.MF', // TODO: can we remove this? '**/META-INF/services/**', // TODO: can we remove this? '**/META-INF/groovy/**', // TODO: can we remove this? + '**/integration-test/resources/assets/*.txt', // exclude test artifacts + '**/integration-test/resources/static/*.html', // exclude test artifacts ] } \ No newline at end of file diff --git a/geb.gradle b/geb.gradle index 5d726fb8..86c40a20 100644 --- a/geb.gradle +++ b/geb.gradle @@ -102,6 +102,9 @@ tasks.named('rat') { 'logo.svg', // Logo svg 'out/**', '*.ipr', '**/*.iml', '*.iws', '.idea/**', // Intellij files 'bootstrap/settings.gradle', // empty file + 'integration/**/integration-test/resources/assets/*.txt', // exclude test artifacts + 'integration/**/integration-test/resources/static/*.html', // exclude test artifacts + '**/resources/META-INF/**/*' // exclude Spock extension file ] }
