Skip to content

Commit dd7fab6

Browse files
committed
curator patch
1 parent 0a0d9a6 commit dd7fab6

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

pom.xml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@
106106
<!-- ZK -->
107107
<spring-cloud-zookeeper.version>2.2.5.RELEASE</spring-cloud-zookeeper.version>
108108
<zookeeper.version>3.8.1</zookeeper.version>
109+
<curator.version>5.5.0</curator.version>
110+
<curator-framework.version>5.5.0-disable-connectstr-updates</curator-framework.version>
109111

110112
<!-- Hadoop -->
111113
<hadoop.version>2.6.0-cdh5.16.2</hadoop.version>
@@ -364,6 +366,38 @@
364366
<artifactId>spring-cloud-starter-zookeeper-config</artifactId>
365367
<version>${spring-cloud-zookeeper.version}</version>
366368
</dependency>
369+
<dependency>
370+
<groupId>org.apache.curator</groupId>
371+
<artifactId>curator-client</artifactId>
372+
<version>${curator.version}</version>
373+
<exclusions>
374+
<exclusion>
375+
<groupId>org.apache.zookeeper</groupId>
376+
<artifactId>zookeeper</artifactId>
377+
</exclusion>
378+
</exclusions>
379+
</dependency>
380+
<dependency>
381+
<groupId>org.apache.curator</groupId>
382+
<artifactId>curator-framework</artifactId>
383+
<version>${curator-framework.version}</version>
384+
</dependency>
385+
<dependency>
386+
<groupId>org.apache.curator</groupId>
387+
<artifactId>curator-x-discovery</artifactId>
388+
<version>${curator.version}</version>
389+
</dependency>
390+
<dependency>
391+
<groupId>org.apache.curator</groupId>
392+
<artifactId>curator-recipes</artifactId>
393+
<version>${curator.version}</version>
394+
<exclusions>
395+
<exclusion>
396+
<groupId>org.apache.zookeeper</groupId>
397+
<artifactId>zookeeper</artifactId>
398+
</exclusion>
399+
</exclusions>
400+
</dependency>
367401

368402
<!-- Hadoop -->
369403
<dependency>

0 commit comments

Comments
 (0)