You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/04/21 14:57:32 UTC

[commons-collections] branch master updated: COLLECTIONS-754 upgrade to JUnit v5.6.0 (#136)

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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-collections.git


The following commit(s) were added to refs/heads/master by this push:
     new 558fc3e  COLLECTIONS-754 upgrade to JUnit v5.6.0 (#136)
558fc3e is described below

commit 558fc3eb460429b4e5d96f8d9e061599f3a09437
Author: John Patrick <14...@users.noreply.github.com>
AuthorDate: Tue Apr 21 15:57:22 2020 +0100

    COLLECTIONS-754 upgrade to JUnit v5.6.0 (#136)
    
    * COLLECTIONS-753 update to hamcrest v2.2
    
    * COLLECTIONS-754 update to junit v5.6.0
---
 pom.xml | 24 +++++++++++++++++++++---
 1 file changed, 21 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 516ac16..e632c7c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -445,9 +445,27 @@
 
   <dependencies>
     <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>4.13</version>
+      <groupId>org.junit.jupiter</groupId>
+      <artifactId>junit-jupiter-engine</artifactId>
+      <version>5.6.0</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.junit.vintage</groupId>
+      <artifactId>junit-vintage-engine</artifactId>
+      <version>5.6.0</version>
+      <scope>test</scope>
+      <exclusions>
+        <exclusion>
+          <groupId>org.hamcrest</groupId>
+          <artifactId>hamcrest-core</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.hamcrest</groupId>
+      <artifactId>hamcrest</artifactId>
+      <version>2.2</version>
       <scope>test</scope>
     </dependency>
     <dependency>