This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 386cfb6622 [core] Exclude .class files from sources.jar (#6707)
386cfb6622 is described below
commit 386cfb66221482b63a03b97f03d0b6f9260d0d30
Author: zhan7236 <[email protected]>
AuthorDate: Tue Dec 2 13:14:17 2025 +0800
[core] Exclude .class files from sources.jar (#6707)
---
pom.xml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/pom.xml b/pom.xml
index 6abdb16219..908375b41d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -341,6 +341,11 @@ under the License.
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
+ <configuration>
+ <excludes>
+ <exclude>**/*.class</exclude>
+ </excludes>
+ </configuration>
<executions>
<execution>
<id>attach-sources</id>