feature(all): 切换使用zookeeper作为注册中心

This commit is contained in:
2023-07-12 14:38:35 +08:00
parent 6e80985552
commit 09343e8efa
5 changed files with 28 additions and 6 deletions

View File

@@ -73,6 +73,10 @@
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.curator</groupId>
<artifactId>curator-client</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
@@ -80,6 +84,21 @@
<artifactId>hudi-flink1.13-bundle</artifactId>
<version>0.12.0-eshore-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-framework</artifactId>
<version>5.1.0</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
<exclusion>
<artifactId>netty</artifactId>
<groupId>io.netty</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>