Skip to content

Commit 10bdc59

Browse files
nkalmarjojochuang
authored andcommitted
HADOOP-16579. Upgrade to Apache Curator 4.2.0 excluding ZK (#1531). Contributed by Norbert Kalmár.
1 parent 6574f27 commit 10bdc59

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

hadoop-project/pom.xml

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
<protoc.path>${env.HADOOP_PROTOC_PATH}</protoc.path>
8989

9090
<zookeeper.version>3.4.13</zookeeper.version>
91-
<curator.version>2.13.0</curator.version>
91+
<curator.version>4.2.0</curator.version>
9292
<findbugs.version>3.0.0</findbugs.version>
9393
<spotbugs.version>3.1.0-RC1</spotbugs.version>
9494
<dnsjava.version>2.1.7</dnsjava.version>
@@ -1340,6 +1340,20 @@
13401340
<groupId>org.apache.curator</groupId>
13411341
<artifactId>curator-client</artifactId>
13421342
<version>${curator.version}</version>
1343+
<exclusions>
1344+
<exclusion>
1345+
<groupId>org.apache.zookeeper</groupId>
1346+
<artifactId>zookeeper</artifactId>
1347+
</exclusion>
1348+
<exclusion>
1349+
<groupId>com.google.guava</groupId>
1350+
<artifactId>guava</artifactId>
1351+
</exclusion>
1352+
<exclusion>
1353+
<groupId>org.slf4j</groupId>
1354+
<artifactId>slf4j-api</artifactId>
1355+
</exclusion>
1356+
</exclusions>
13431357
</dependency>
13441358
<dependency>
13451359
<groupId>org.apache.curator</groupId>
@@ -1350,6 +1364,16 @@
13501364
<groupId>org.apache.curator</groupId>
13511365
<artifactId>curator-test</artifactId>
13521366
<version>${curator.version}</version>
1367+
<exclusions>
1368+
<exclusion>
1369+
<groupId>org.apache.zookeeper</groupId>
1370+
<artifactId>zookeeper</artifactId>
1371+
</exclusion>
1372+
<exclusion>
1373+
<groupId>com.google.guava</groupId>
1374+
<artifactId>guava</artifactId>
1375+
</exclusion>
1376+
</exclusions>
13531377
</dependency>
13541378
<dependency>
13551379
<groupId>org.bouncycastle</groupId>

0 commit comments

Comments
 (0)