Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add rat excludes for test resources
  • Loading branch information
cbmarcum committed Feb 3, 2026
commit 163e4af250b6a7fc8e7d4742fa43c39735e98666
2 changes: 2 additions & 0 deletions buildSrc/src/main/groovy/geb.groovy-module.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
]
}
3 changes: 3 additions & 0 deletions geb.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
]
}

Expand Down