Skip to content

Commit

Permalink
upgrading zookeeper and curator to match new cluster version
Browse files Browse the repository at this point in the history
(cherry picked from commit 4606ac6)
  • Loading branch information
fmendezh authored and marcos-lg committed May 21, 2024
1 parent 3b2da55 commit d5ba2f4
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
18 changes: 17 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@
<retrofit.version>2.8.0</retrofit.version>
<slf4j.version>1.7.30</slf4j.version>
<woodstox.version>4.4.1</woodstox.version>
<zookeeper.version>3.4.14</zookeeper.version>
<zookeeper.version>3.8.1</zookeeper.version>
<curator.version>5.5.0</curator.version>
<owasp-java-html-sanitizer.version>20200713.1</owasp-java-html-sanitizer.version>
<super-csv.version>2.4.0</super-csv.version>
<opencsv.version>5.7.1</opencsv.version>
Expand Down Expand Up @@ -450,6 +451,21 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-framework</artifactId>
<version>${curator.version}</version>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
<version>${curator.version}</version>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-x-discovery</artifactId>
<version>${curator.version}</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
Expand Down
14 changes: 14 additions & 0 deletions registry-ws/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,20 @@
</properties>

<dependencies>

<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-framework</artifactId>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-x-discovery</artifactId>
</dependency>

<!-- Tools -->
<dependency>
<groupId>org.projectlombok</groupId>
Expand Down

0 comments on commit d5ba2f4

Please sign in to comment.