Skip to content

Commit b5aad20

Browse files
Melissa Youvirajjasani
authored andcommitted
HADOOP-18515. Backport HADOOP-17612 to branch-3.3(Upgrade Zookeeper to 3.6.3 and Curator to 5.2.0) (apache#5097) (apache#24)
* HADOOP-17612. Upgrade Zookeeper to 3.6.3 and Curator to 5.2.0 (apache#3241) Signed-off-by: Akira Ajisaka <[email protected]> Co-authored-by: Viraj Jasani <[email protected]> Co-authored-by: Melissa You <[email protected]> Co-authored-by: Viraj Jasani <[email protected]>
1 parent c6aa4f6 commit b5aad20

File tree

14 files changed

+449
-369
lines changed

14 files changed

+449
-369
lines changed

LICENSE-binary

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -287,9 +287,9 @@ org.apache.commons:commons-lang3:3.12.0
287287
org.apache.commons:commons-math3:3.1.1
288288
org.apache.commons:commons-text:1.4
289289
org.apache.commons:commons-validator:1.6
290-
org.apache.curator:curator-client:4.2.0
291-
org.apache.curator:curator-framework:4.2.0
292-
org.apache.curator:curator-recipes:4.2.0
290+
org.apache.curator:curator-client:5.2.0
291+
org.apache.curator:curator-framework:5.2.0
292+
org.apache.curator:curator-recipes:5.2.0
293293
org.apache.geronimo.specs:geronimo-jcache_1.0_spec:1.0-alpha-1
294294
org.apache.hbase:hbase-annotations:1.4.8
295295
org.apache.hbase:hbase-client:1.4.8
@@ -316,8 +316,6 @@ org.apache.kerby:kerby-util:1.0.1
316316
org.apache.kerby:kerby-xdr:1.0.1
317317
org.apache.kerby:token-provider:1.0.1
318318
org.apache.yetus:audience-annotations:0.5.0
319-
org.apache.zookeeper:zookeeper:3.5.6
320-
org.apache.zookeeper:zookeeper-jute:3.5.6
321319
org.codehaus.jackson:jackson-core-asl:1.9.13
322320
org.codehaus.jackson:jackson-jaxrs:1.9.13
323321
org.codehaus.jackson:jackson-mapper-asl:1.9.13
@@ -343,6 +341,7 @@ org.eclipse.jetty.websocket:websocket-client:9.4.40.v20210413
343341
org.eclipse.jetty.websocket:websocket-common:9.4.40.v20210413
344342
org.eclipse.jetty.websocket:websocket-server:9.4.40.v20210413
345343
org.eclipse.jetty.websocket:websocket-servlet:9.4.40.v20210413
344+
org.apache.zookeeper:zookeeper:3.6.3
346345
org.ehcache:ehcache:3.3.1
347346
org.lz4:lz4-java:1.7.1
348347
org.objenesis:objenesis:2.6

hadoop-common-project/hadoop-auth/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,15 @@
128128
<groupId>org.apache.zookeeper</groupId>
129129
<artifactId>zookeeper</artifactId>
130130
</dependency>
131+
<dependency>
132+
<groupId>io.dropwizard.metrics</groupId>
133+
<artifactId>metrics-core</artifactId>
134+
</dependency>
135+
<dependency>
136+
<groupId>org.xerial.snappy</groupId>
137+
<artifactId>snappy-java</artifactId>
138+
<scope>provided</scope>
139+
</dependency>
131140
<dependency>
132141
<groupId>org.apache.curator</groupId>
133142
<artifactId>curator-framework</artifactId>

hadoop-common-project/hadoop-common/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,10 @@
309309
</exclusion>
310310
</exclusions>
311311
</dependency>
312+
<dependency>
313+
<groupId>io.dropwizard.metrics</groupId>
314+
<artifactId>metrics-core</artifactId>
315+
</dependency>
312316
<dependency>
313317
<groupId>org.apache.zookeeper</groupId>
314318
<artifactId>zookeeper</artifactId>

0 commit comments

Comments
 (0)