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 2022/07/27 15:52:45 UTC

[maven-enforcer] branch MENFORCER-428 created (now 7d0391c)

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

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


      at 7d0391c  [MENFORCER-428] - Using junit jupiter bom instead of single artifacts.

This branch includes the following new commits:

     new 7d0391c  [MENFORCER-428] - Using junit jupiter bom instead of single artifacts.

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.



[maven-enforcer] 01/01: [MENFORCER-428] - Using junit jupiter bom instead of single artifacts.

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

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

commit 7d0391cdfe9eb4ebea99cedcbf40c5074ef788b6
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Wed Jul 27 17:52:38 2022 +0200

    [MENFORCER-428] - Using junit jupiter bom instead of single artifacts.
---
 enforcer-rules/pom.xml        | 2 +-
 maven-enforcer-plugin/pom.xml | 2 +-
 pom.xml                       | 7 ++++---
 3 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/enforcer-rules/pom.xml b/enforcer-rules/pom.xml
index 00bd78b..a974cd4 100644
--- a/enforcer-rules/pom.xml
+++ b/enforcer-rules/pom.xml
@@ -104,7 +104,7 @@
     </dependency>
     <dependency>
       <groupId>org.junit.jupiter</groupId>
-      <artifactId>junit-jupiter-api</artifactId>
+      <artifactId>junit-jupiter-engine</artifactId>
       <scope>test</scope>
     </dependency>
     <dependency>
diff --git a/maven-enforcer-plugin/pom.xml b/maven-enforcer-plugin/pom.xml
index 58e4721..a9f28ac 100644
--- a/maven-enforcer-plugin/pom.xml
+++ b/maven-enforcer-plugin/pom.xml
@@ -81,7 +81,7 @@
     </dependency>
     <dependency>
       <groupId>org.junit.jupiter</groupId>
-      <artifactId>junit-jupiter-api</artifactId>
+      <artifactId>junit-jupiter-engine</artifactId>
       <scope>test</scope>
     </dependency>
   </dependencies>
diff --git a/pom.xml b/pom.xml
index 54ef866..e73f294 100644
--- a/pom.xml
+++ b/pom.xml
@@ -124,10 +124,11 @@
         <version>3.4.2</version>
       </dependency>
       <dependency>
-        <groupId>org.junit.jupiter</groupId>
-        <artifactId>junit-jupiter-api</artifactId>
+        <groupId>org.junit</groupId>
+        <artifactId>junit-bom</artifactId>
         <version>5.8.2</version>
-        <scope>test</scope>
+        <scope>import</scope>
+        <type>pom</type>
       </dependency>
       <dependency>
         <groupId>org.mockito</groupId>