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 745ee67e0f [pom] Fix RoaringBitmap dependency problem in partial 
building (#5098)
745ee67e0f is described below

commit 745ee67e0f23df6c42a853534fceed90d21fb6bb
Author: Jingsong Lee <[email protected]>
AuthorDate: Mon Feb 17 16:52:05 2025 +0800

    [pom] Fix RoaringBitmap dependency problem in partial building (#5098)
---
 paimon-benchmark/paimon-micro-benchmarks/pom.xml | 6 ++++++
 paimon-common/pom.xml                            | 2 +-
 pom.xml                                          | 1 +
 3 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/paimon-benchmark/paimon-micro-benchmarks/pom.xml 
b/paimon-benchmark/paimon-micro-benchmarks/pom.xml
index d4814bf01f..87d0c488f4 100644
--- a/paimon-benchmark/paimon-micro-benchmarks/pom.xml
+++ b/paimon-benchmark/paimon-micro-benchmarks/pom.xml
@@ -57,6 +57,12 @@ under the License.
             <version>${log4j.version}</version>
         </dependency>
 
+        <dependency>
+            <groupId>org.roaringbitmap</groupId>
+            <artifactId>RoaringBitmap</artifactId>
+            <version>${roaringbitmap.version}</version>
+        </dependency>
+
         <!-- Orc and parquet dependencies -->
 
         <dependency>
diff --git a/paimon-common/pom.xml b/paimon-common/pom.xml
index 1771659992..753ef20ab7 100644
--- a/paimon-common/pom.xml
+++ b/paimon-common/pom.xml
@@ -144,7 +144,7 @@ under the License.
         <dependency>
             <groupId>org.roaringbitmap</groupId>
             <artifactId>RoaringBitmap</artifactId>
-            <version>1.2.1</version>
+            <version>${roaringbitmap.version}</version>
         </dependency>
 
         <dependency>
diff --git a/pom.xml b/pom.xml
index d427e05df0..b40fbeecd5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -106,6 +106,7 @@ under the License.
         <parquet.version>1.13.1</parquet.version>
         <orc.version>1.9.2</orc.version>
         <protobuf-java.version>3.19.6</protobuf-java.version>
+        <roaringbitmap.version>1.2.1</roaringbitmap.version>
 
         <!-- Can be set to any value to reproduce a specific build. -->
         <test.randomization.seed/>

Reply via email to