This is an automated email from the ASF dual-hosted git repository.
tilman pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tika.git
The following commit(s) were added to refs/heads/main by this push:
new d544f0e6a TIKA-4504: add exclusions
d544f0e6a is described below
commit d544f0e6abf41c12993358cfa20f9b89f7ea2e80
Author: Tilman Hausherr <[email protected]>
AuthorDate: Sun Oct 5 20:00:47 2025 +0200
TIKA-4504: add exclusions
---
tika-bundles/pom.xml | 14 ++++++++++++++
tika-pipes/pom.xml | 1 +
2 files changed, 15 insertions(+)
diff --git a/tika-bundles/pom.xml b/tika-bundles/pom.xml
index f7c341d95..efb51fc7c 100644
--- a/tika-bundles/pom.xml
+++ b/tika-bundles/pom.xml
@@ -35,6 +35,20 @@
<modules>
<module>tika-bundle-standard</module>
</modules>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.rat</groupId>
+ <artifactId>apache-rat-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <exclude>tika-bundle-standard/dependency-reduced-pom.xml</exclude>
<!-- generated -->
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
<scm>
<tag>3.0.0-rc1</tag>
diff --git a/tika-pipes/pom.xml b/tika-pipes/pom.xml
index 9b33b5cba..eb157d31b 100644
--- a/tika-pipes/pom.xml
+++ b/tika-pipes/pom.xml
@@ -58,6 +58,7 @@
<configuration>
<excludes>
<exclude>tika-pipes-iterators/tika-pipes-iterator-csv/src/test/resources/test-simple.csv</exclude>
<!-- already checked -->
+
<exclude>tika-pipes-core/src/test/resources/test-documents/**</exclude> <!--
already checked -->
</excludes>
</configuration>
</plugin>