This is an automated email from the ASF dual-hosted git repository. XiaoHongbo-Hope pushed a commit to branch release-0.1 in repository https://gitbox.apache.org/repos/asf/paimon-mosaic.git
commit 15c63fc7d824b3966cf0eb7bde72cd36a7b522d3 Author: QuakeWang <[email protected]> AuthorDate: Sun May 24 13:22:29 2026 +0800 ci: attach Java release source and javadoc jars (#41) --- java/pom.xml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/java/pom.xml b/java/pom.xml index 9c7a38b..a6bd82f 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -133,6 +133,35 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <version>3.3.1</version> + <executions> + <execution> + <id>attach-sources</id> + <goals> + <goal>jar-no-fork</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>3.6.3</version> + <configuration> + <quiet>true</quiet> + </configuration> + <executions> + <execution> + <id>attach-javadocs</id> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId>
