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

khmarbaise pushed a commit to branch MSHARED-1332
in repository https://gitbox.apache.org/repos/asf/maven-dependency-analyzer.git

commit 0ae9f893d29d7dea031c718fc7e1cb465fc4d6ff
Author: Karl Heinz Marbaise <khmarba...@apache.org>
AuthorDate: Fri Nov 10 02:26:56 2023 +0100

    [MSHARED-1332] - Usage of bom instead of single dependencies
---
 pom.xml | 25 +++++++++++++++++++++++--
 1 file changed, 23 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 35f6783..67ff45f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -63,6 +63,24 @@
     
<project.build.outputTimestamp>2023-04-30T22:19:57Z</project.build.outputTimestamp>
   </properties>
 
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>org.junit</groupId>
+        <artifactId>junit-bom</artifactId>
+        <version>5.10.1</version>
+        <type>pom</type>
+        <scope>import</scope>
+      </dependency>
+      <dependency>
+        <groupId>org.assertj</groupId>
+        <artifactId>assertj-bom</artifactId>
+        <version>3.24.2</version>
+        <type>pom</type>
+        <scope>import</scope>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
   <dependencies>
 
     <dependency>
@@ -106,16 +124,19 @@
     </dependency>
 
     <!-- testing support -->
+    <dependency>
+      <groupId>org.junit.jupiter</groupId>
+      <artifactId>junit-jupiter-engine</artifactId>
+      <scope>test</scope>
+    </dependency>
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter-api</artifactId>
-      <version>5.10.0</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.assertj</groupId>
       <artifactId>assertj-core</artifactId>
-      <version>3.24.2</version>
       <scope>test</scope>
     </dependency>
     <dependency>

Reply via email to