You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zookeeper.apache.org by nk...@apache.org on 2020/10/05 15:01:48 UTC

[zookeeper] branch master updated: ZOOKEEPER-3953: Update hamcrest-library to version 2.2

This is an automated email from the ASF dual-hosted git repository.

nkalmar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zookeeper.git


The following commit(s) were added to refs/heads/master by this push:
     new 663081d  ZOOKEEPER-3953: Update hamcrest-library to version 2.2
663081d is described below

commit 663081d249626d20d6a2cfa75396b2a3d4454085
Author: Tamas Penzes <ta...@cloudera.com>
AuthorDate: Mon Oct 5 17:01:34 2020 +0200

    ZOOKEEPER-3953: Update hamcrest-library to version 2.2
    
    We use a really old version of hamcrest-library where we could use a newer one (version 2.2 instead of 1.3).
    Time to update it.
    
    Author: Tamas Penzes <ta...@cloudera.com>
    
    Reviewers: Enrico Olivelli <eo...@apache.org>, Norbert Kalmar <nk...@apache.org>
    
    Closes #1479 from tamaashu/ZOOKEEPER-3953
---
 pom.xml                  | 4 ++--
 zookeeper-server/pom.xml | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index db2261f..b994523 100755
--- a/pom.xml
+++ b/pom.xml
@@ -433,7 +433,7 @@
     <junit-platform.version>1.6.2</junit-platform.version>
     <log4j.version>1.2.17</log4j.version>
     <mockito.version>2.27.0</mockito.version>
-    <hamcrest.version>1.3</hamcrest.version>
+    <hamcrest.version>2.2</hamcrest.version>
     <commons-cli.version>1.4</commons-cli.version>
     <netty.version>4.1.50.Final</netty.version>
     <jetty.version>9.4.24.v20191120</jetty.version>
@@ -459,7 +459,7 @@
     <dependencies>
       <dependency>
         <groupId>org.hamcrest</groupId>
-        <artifactId>hamcrest-all</artifactId>
+        <artifactId>hamcrest-library</artifactId>
         <version>${hamcrest.version}</version>
       </dependency>
       <dependency>
diff --git a/zookeeper-server/pom.xml b/zookeeper-server/pom.xml
index 059f2ff..5cdb8b3 100755
--- a/zookeeper-server/pom.xml
+++ b/zookeeper-server/pom.xml
@@ -40,7 +40,7 @@
     </dependency>
     <dependency>
       <groupId>org.hamcrest</groupId>
-      <artifactId>hamcrest-all</artifactId>
+      <artifactId>hamcrest-library</artifactId>
       <scope>test</scope>
     </dependency>
     <dependency>