Skip to content

Commit

Permalink
[MSHARED-1332] - Usage of bom instead of single dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
khmarbaise committed Nov 10, 2023
1 parent 07a2d39 commit 657ad7c
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-bom</artifactId>
<version>3.24.2</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>

<dependency>
Expand Down Expand Up @@ -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>
Expand Down

0 comments on commit 657ad7c

Please sign in to comment.