This is an automated email from the ASF dual-hosted git repository.
jnioche pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-stormcrawler.git
The following commit(s) were added to refs/heads/main by this push:
new dc84c569 Fix #1216 - Add RAT Exclusion File for standalone RAT (#1243)
dc84c569 is described below
commit dc84c569bc4fd94d3935a63478c00c8f3bfcbaca
Author: Richard Zowalla <[email protected]>
AuthorDate: Fri Jun 21 10:53:04 2024 +0200
Fix #1216 - Add RAT Exclusion File for standalone RAT (#1243)
---
.rat-excludes | 26 ++++++++++++++++++++++++++
pom.xml | 1 +
2 files changed, 27 insertions(+)
diff --git a/.rat-excludes b/.rat-excludes
new file mode 100644
index 00000000..c3d86765
--- /dev/null
+++ b/.rat-excludes
@@ -0,0 +1,26 @@
+**/*.ndjson
+**/*.mapping
+**/*.flux
+**/*.txt
+**/*.rss
+**/*.tar.gz
+**/README.md
+**/target/**
+**/warc.inputs
+LICENSE
+NOTICE
+DISCLAIMER
+CONTRIBUTING.md
+RELEASING.md
+THIRD-PARTY.properties
+THIRD-PARTY.txt
+.github/*.md
+.mvn/*.config
+.gitattributes
+**/dependency-reduced-pom.xml
+.editorconfig
+**/.settings/**/*
+**/.classpath
+**/.project
+**/.idea
+**/.rat-excludes
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index 2f2f5f99..0025de0f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -435,6 +435,7 @@ under the License.
<exclude>**/.classpath</exclude> <!-- Eclipse -->
<exclude>**/.project</exclude> <!-- Eclipse -->
<exclude>**/.idea</exclude> <!-- IntelliJ -->
+
<exclude>**/.rat-excludes</exclude>
</excludes>
</configuration>
</plugin>