This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/branch-2.1 by this push:
new 846192c16 ORC-2098: Exclude `.mvn/maven.config` for `apache-rat-plugin`
846192c16 is described below
commit 846192c16d29e701046b7a6182d2d676ad156cab
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Thu Feb 19 12:17:47 2026 -0800
ORC-2098: Exclude `.mvn/maven.config` for `apache-rat-plugin`
### What changes were proposed in this pull request?
This PR aims to exclude `.mvn/maven.config` for `apache-rat-plugin`.
### Why are the changes needed?
To avoid the build failures.
### How was this patch tested?
Pass the CIs.
### Was this patch authored or co-authored using generative AI tooling?
Generated-by: `Opus 4.6 (1M context)` on `Claude Code`
Closes #2539 from dongjoon-hyun/ORC-2098-2.1.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
java/pom.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/java/pom.xml b/java/pom.xml
index d815fdb27..093c00cf1 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -432,6 +432,7 @@
<exclude>**/*.iml</exclude>
<exclude>**/dependency-reduced-pom.xml</exclude>
<exclude>.mvn/jvm.config</exclude>
+ <exclude>.mvn/maven.config</exclude>
</excludes>
</configuration>
<executions>