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 136e7a8be TIKA-4504: add exclusions
136e7a8be is described below

commit 136e7a8be3a948299c7567348fd59a9eac6b50d6
Author: Tilman Hausherr <[email protected]>
AuthorDate: Sun Oct 5 06:57:00 2025 +0200

    TIKA-4504: add exclusions
---
 tika-parent/pom.xml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/tika-parent/pom.xml b/tika-parent/pom.xml
index 9596b658d..27cae1205 100644
--- a/tika-parent/pom.xml
+++ b/tika-parent/pom.xml
@@ -1482,7 +1482,14 @@
           <plugin>
             <groupId>org.apache.rat</groupId>
             <artifactId>apache-rat-plugin</artifactId>
-            <version>${rat.version}</version>
+            <configuration>
+              <excludes>
+                <exclude>nb-configuration.xml</exclude> <!-- local netbeans -->
+                <exclude>nbactions.xml</exclude> <!-- local netbeans -->
+                <exclude>**/test-documents/**</exclude>
+                <exclude>**/target/**</exclude> <!-- generated files -->
+              </excludes>
+            </configuration>
             <executions>
               <execution>
                 <phase>verify</phase>

Reply via email to