This is an automated email from the ASF dual-hosted git repository.
JingsongLi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/paimon-mosaic.git
The following commit(s) were added to refs/heads/main by this push:
new b159590 Maven modified to org.apache.paimon and mosaic
b159590 is described below
commit b159590d0d257a5b30e9c1ae1ce8b5b4e59e4e4f
Author: JingsongLi <[email protected]>
AuthorDate: Wed May 20 20:38:39 2026 +0800
Maven modified to org.apache.paimon and mosaic
---
java/pom.xml | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/java/pom.xml b/java/pom.xml
index bfe3127..dfd54c0 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -28,13 +28,13 @@
<version>23</version>
</parent>
- <groupId>org.apache.paimon.mosaic</groupId>
- <artifactId>mosaic-writer</artifactId>
+ <groupId>org.apache.paimon</groupId>
+ <artifactId>mosaic</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>jar</packaging>
- <name>Mosaic Writer</name>
- <description>Mosaic file format writer for Java (backed by Rust via
JNI)</description>
+ <name>Mosaic</name>
+ <description>Mosaic file format for Java (backed by Rust via
JNI)</description>
<url>https://paimon.apache.org</url>
<inceptionYear>2025</inceptionYear>
@@ -84,16 +84,21 @@
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-vector</artifactId>
+ <scope>provided</scope>
</dependency>
+
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-netty</artifactId>
- <scope>runtime</scope>
+ <scope>provided</scope>
</dependency>
+
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-c-data</artifactId>
+ <scope>provided</scope>
</dependency>
+
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>