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:26:50 UTC

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

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 b9d318dcfc4aeddd37811b29114fcb0f40d33602
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Thu Sep 30 01:26:42 2021 +0200

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

diff --git a/pom.xml b/pom.xml
index c1bb303..fd14876 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,10 @@ 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>
         <version>${junitVersion}</version>
-        <scope>test</scope>
+        <scope>import</scope>
       </dependency>
     </dependencies>
     <!--bootstrap-start-comment-->
@@ -462,7 +462,6 @@ under the License.
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-engine</artifactId>
-      <version>${junitVersion}</version>
       <scope>test</scope>
     </dependency>
     <dependency>