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