You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2021/09/29 23:28:04 UTC

[maven] branch MNG-7274 updated (b9d318d -> 038201e)

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

khmarbaise pushed a change to branch MNG-7274
in repository https://gitbox.apache.org/repos/asf/maven.git.


 discard b9d318d  [MNG-7274] - JUnit Jupiter via BOM
     new 038201e  [MNG-7274] - JUnit Jupiter via BOM

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (b9d318d)
            \
             N -- N -- N   refs/heads/MNG-7274 (038201e)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml | 1 +
 1 file changed, 1 insertion(+)

[maven] 01/01: [MNG-7274] - JUnit Jupiter via BOM

Posted by kh...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch MNG-7274
in repository https://gitbox.apache.org/repos/asf/maven.git

commit 038201e31423f329afdc5695a4177293b19bc270
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Thu Sep 30 01:26:42 2021 +0200

    [MNG-7274] - JUnit Jupiter via BOM
---
 pom.xml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/pom.xml b/pom.xml
index c1bb303..39e372b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -51,7 +51,7 @@ under the License.
     <classWorldsVersion>2.6.0</classWorldsVersion>
     <commonsCliVersion>1.4</commonsCliVersion>
     <commonsLangVersion>3.12.0</commonsLangVersion>
-    <junitVersion>5.7.0</junitVersion>
+    <junitVersion>5.8.1</junitVersion>
     <mockitoVersion>3.2.0</mockitoVersion>
     <plexusVersion>2.1.0</plexusVersion>
     <plexusInterpolationVersion>1.26</plexusInterpolationVersion>
@@ -448,10 +448,11 @@ under the License.
         <scope>test</scope>
       </dependency>
       <dependency>
-        <groupId>org.junit.jupiter</groupId>
-        <artifactId>junit-jupiter-params</artifactId>
+        <groupId>org.junit</groupId>
+        <artifactId>junit-bom</artifactId>
+        <type>pom</type>
         <version>${junitVersion}</version>
-        <scope>test</scope>
+        <scope>import</scope>
       </dependency>
     </dependencies>
     <!--bootstrap-start-comment-->
@@ -462,7 +463,6 @@ under the License.
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-engine</artifactId>
-      <version>${junitVersion}</version>
       <scope>test</scope>
     </dependency>
     <dependency>