This is an automated email from the ASF dual-hosted git repository.
vinoyang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/master by this push:
new e16d31d [HUDI-1787] Remove the rocksdb jar from hudi-flink-bundle
(#2807)
e16d31d is described below
commit e16d31dce2386868634963ec7cf79c5dfae03cc7
Author: hiscat <[email protected]>
AuthorDate: Tue Apr 13 10:31:16 2021 +0800
[HUDI-1787] Remove the rocksdb jar from hudi-flink-bundle (#2807)
Remove the RocksDB jar from hudi-flink-bundle to avoid conflicts.
---
packaging/hudi-flink-bundle/pom.xml | 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)
diff --git a/packaging/hudi-flink-bundle/pom.xml
b/packaging/hudi-flink-bundle/pom.xml
index 966df9d..014c990 100644
--- a/packaging/hudi-flink-bundle/pom.xml
+++ b/packaging/hudi-flink-bundle/pom.xml
@@ -227,6 +227,12 @@
<groupId>org.apache.hudi</groupId>
<artifactId>hudi-common</artifactId>
<version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <artifactId>rocksdbjni</artifactId>
+ <groupId>org.rocksdb</groupId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.apache.hudi</groupId>
@@ -257,6 +263,12 @@
<groupId>org.apache.hudi</groupId>
<artifactId>hudi-timeline-service</artifactId>
<version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <artifactId>rocksdbjni</artifactId>
+ <groupId>org.rocksdb</groupId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
@@ -471,4 +483,4 @@
</properties>
</profile>
</profiles>
-</project>
\ No newline at end of file
+</project>