1
0

[HUDI-1787] Remove the rocksdb jar from hudi-flink-bundle (#2807)

Remove the RocksDB jar from hudi-flink-bundle to avoid conflicts.
This commit is contained in:
hiscat
2021-04-13 10:31:16 +08:00
committed by GitHub
parent 1ff99ca7d7
commit e16d31dce2

View File

@@ -227,6 +227,12 @@
<groupId>org.apache.hudi</groupId> <groupId>org.apache.hudi</groupId>
<artifactId>hudi-common</artifactId> <artifactId>hudi-common</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
<exclusions>
<exclusion>
<artifactId>rocksdbjni</artifactId>
<groupId>org.rocksdb</groupId>
</exclusion>
</exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.hudi</groupId> <groupId>org.apache.hudi</groupId>
@@ -257,6 +263,12 @@
<groupId>org.apache.hudi</groupId> <groupId>org.apache.hudi</groupId>
<artifactId>hudi-timeline-service</artifactId> <artifactId>hudi-timeline-service</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
<exclusions>
<exclusion>
<artifactId>rocksdbjni</artifactId>
<groupId>org.rocksdb</groupId>
</exclusion>
</exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>javax.servlet</groupId> <groupId>javax.servlet</groupId>
@@ -471,4 +483,4 @@
</properties> </properties>
</profile> </profile>
</profiles> </profiles>
</project> </project>