This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch branch-2.2
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/branch-2.2 by this push:
new 781010834 ORC-2098: Exclude `.mvn/maven.config` for `apache-rat-plugin`
781010834 is described below
commit 781010834f236ddca742e3a5359d396e08557138
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Thu Feb 19 12:15:09 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 #2538 from dongjoon-hyun/ORC-2098-2.2.
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 a85b2e4a9..f106752b0 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -442,6 +442,7 @@
<exclude>**/*.iml</exclude>
<exclude>**/dependency-reduced-pom.xml</exclude>
<exclude>.mvn/jvm.config</exclude>
+ <exclude>.mvn/maven.config</exclude>
</excludes>
</configuration>
<executions>