Skip to content

Commit cdcd0b2

Browse files
committed
Use JUnit Platform BOM to align versions of JUnit 5 artifacts
1 parent 62d7e19 commit cdcd0b2

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

pom.xml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,7 @@
5353
</dependency>
5454
<dependency>
5555
<groupId>org.junit.jupiter</groupId>
56-
<artifactId>junit-jupiter-engine</artifactId>
57-
<version>5.9.2</version>
56+
<artifactId>junit-jupiter</artifactId>
5857
<scope>test</scope>
5958
</dependency>
6059
<dependency>
@@ -65,11 +64,22 @@
6564
<dependency>
6665
<groupId>org.junit.jupiter</groupId>
6766
<artifactId>junit-jupiter-params</artifactId>
68-
<version>5.8.0</version>
6967
<scope>test</scope>
7068
</dependency>
7169
</dependencies>
7270

71+
<dependencyManagement>
72+
<dependencies>
73+
<dependency>
74+
<groupId>org.junit</groupId>
75+
<artifactId>junit-bom</artifactId>
76+
<version>5.10.3</version>
77+
<type>pom</type>
78+
<scope>import</scope>
79+
</dependency>
80+
</dependencies>
81+
</dependencyManagement>
82+
7383
<build>
7484
<resources>
7585
<resource>

0 commit comments

Comments
 (0)