This is an automated email from the ASF dual-hosted git repository.
snazy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris-tools.git
The following commit(s) were added to refs/heads/main by this push:
new e1665fc Apprunner: add rat-excludes for gradle-wrapper.properties
(#153)
e1665fc is described below
commit e1665fcc87eb54ce3a037a0756112625ccc934d2
Author: Robert Stupp <[email protected]>
AuthorDate: Wed Feb 4 16:10:50 2026 +0100
Apprunner: add rat-excludes for gradle-wrapper.properties (#153)
---
apprunner/build.gradle.kts | 2 ++
1 file changed, 2 insertions(+)
diff --git a/apprunner/build.gradle.kts b/apprunner/build.gradle.kts
index 17002c1..3f74aec 100644
--- a/apprunner/build.gradle.kts
+++ b/apprunner/build.gradle.kts
@@ -66,6 +66,8 @@ eclipse { project { name = ideName } }
tasks.named<RatTask>("rat").configure {
// These are Gradle file pattern syntax
excludes.add("**/build/**")
+ excludes.add("gradle/wrapper/gradle-wrapper*")
+ excludes.add("**/gradle/wrapper/gradle-wrapper*")
excludes.add("LICENSE")
excludes.add("NOTICE")