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 2021/12/11 21:26:47 UTC

[commons-vfs] branch master updated: Replace JUnit 4.13.2 with 5.8.2 Vintage.

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-vfs.git


The following commit(s) were added to refs/heads/master by this push:
     new 5ca63c2  Replace JUnit 4.13.2 with 5.8.2 Vintage.
5ca63c2 is described below

commit 5ca63c27a17716f48b3b1689d5a76382778f2192
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Dec 11 16:26:43 2021 -0500

    Replace JUnit 4.13.2 with 5.8.2 Vintage.
---
 commons-vfs2-jackrabbit1/pom.xml | 4 ++--
 commons-vfs2-jackrabbit2/pom.xml | 4 ++--
 commons-vfs2-sandbox/pom.xml     | 4 ++--
 commons-vfs2/pom.xml             | 4 ++--
 pom.xml                          | 6 +++---
 src/changes/changes.xml          | 3 +++
 6 files changed, 14 insertions(+), 11 deletions(-)

diff --git a/commons-vfs2-jackrabbit1/pom.xml b/commons-vfs2-jackrabbit1/pom.xml
index d9035d1..322077f 100644
--- a/commons-vfs2-jackrabbit1/pom.xml
+++ b/commons-vfs2-jackrabbit1/pom.xml
@@ -68,8 +68,8 @@
     </dependency>
 
     <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
+      <groupId>org.junit.vintage</groupId>
+      <artifactId>junit-vintage-engine</artifactId>
       <scope>test</scope>
     </dependency>
 
diff --git a/commons-vfs2-jackrabbit2/pom.xml b/commons-vfs2-jackrabbit2/pom.xml
index 12a0f1d..3c79083 100644
--- a/commons-vfs2-jackrabbit2/pom.xml
+++ b/commons-vfs2-jackrabbit2/pom.xml
@@ -69,8 +69,8 @@
     </dependency>
 
     <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
+      <groupId>org.junit.vintage</groupId>
+      <artifactId>junit-vintage-engine</artifactId>
       <scope>test</scope>
     </dependency>
 
diff --git a/commons-vfs2-sandbox/pom.xml b/commons-vfs2-sandbox/pom.xml
index 028a03b..70aa38e 100644
--- a/commons-vfs2-sandbox/pom.xml
+++ b/commons-vfs2-sandbox/pom.xml
@@ -70,8 +70,8 @@
        <scope>test</scope>
     </dependency>
     <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
+      <groupId>org.junit.vintage</groupId>
+      <artifactId>junit-vintage-engine</artifactId>
       <scope>test</scope>
     </dependency>
     <dependency>
diff --git a/commons-vfs2/pom.xml b/commons-vfs2/pom.xml
index 7a78d47..0434f0e 100644
--- a/commons-vfs2/pom.xml
+++ b/commons-vfs2/pom.xml
@@ -94,8 +94,8 @@
     </dependency>
 
     <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
+      <groupId>org.junit.vintage</groupId>
+      <artifactId>junit-vintage-engine</artifactId>
       <scope>test</scope>
     </dependency>
     <dependency>
diff --git a/pom.xml b/pom.xml
index fa1bcbf..cadb98b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -616,9 +616,9 @@
       </dependency>
       <!-- Testing -->
       <dependency>
-        <groupId>junit</groupId>
-        <artifactId>junit</artifactId>
-        <version>4.13.2</version>
+        <groupId>org.junit.vintage</groupId>
+        <artifactId>junit-vintage-engine</artifactId>
+        <version>5.8.2</version>
       </dependency>
       <dependency>
         <groupId>org.mockito</groupId>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 97d3a37..ad14893 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -148,6 +148,9 @@ The <action> type attribute can be add,update,fix,remove.
       <action dev="ggregory" due-to="Gary Gregory" type="update">
         Update commons.japicmp.version 0.15.3 -> 0.15.4.
       </action>
+      <action dev="ggregory" due-to="Gary Gregory" type="update">
+        Replace JUnit 4.13.2 with 5.8.2 Vintage.
+      </action>
     </release>
     <release version="2.9.0" date="2021-06-16" description="Maintenance release. Requires Java 8.">
       <!-- ADDS -->