This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/branch-2.0 by this push:
new 478b73c25 ORC-1641: Remove `sourceFileExcludes ` from
`maven-javadoc-plugin`
478b73c25 is described below
commit 478b73c2535d4df3014e5b1d4d15ced8239dd661
Author: sychen <[email protected]>
AuthorDate: Thu Feb 29 08:08:58 2024 -0800
ORC-1641: Remove `sourceFileExcludes ` from `maven-javadoc-plugin`
### What changes were proposed in this pull request?
This PR aims to remove exclude `OrcProto.java` in the
`maven-javadoc-plugin`.
### Why are the changes needed?
In ORC2.X we use orc-format, so exclude no longer takes effect.
### How was this patch tested?
GA
### Was this patch authored or co-authored using generative AI tooling?
No
Closes #1831 from cxzl25/ORC-1641.
Authored-by: sychen <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
(cherry picked from commit 97c067d1b7719d4b2204afddc44e4186194af389)
Signed-off-by: Dongjoon Hyun <[email protected]>
---
java/core/pom.xml | 3 ---
1 file changed, 3 deletions(-)
diff --git a/java/core/pom.xml b/java/core/pom.xml
index 755c005b1..9167663e8 100644
--- a/java/core/pom.xml
+++ b/java/core/pom.xml
@@ -143,9 +143,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
- <sourceFileExcludes>
- <exclude>**/OrcProto.java</exclude>
- </sourceFileExcludes>
<destDir>${project.artifactId}</destDir>
</configuration>
</plugin>