Skip to content

Commit faa5269

Browse files
committed
Simplify dependency on JUnit.
1 parent cd5a7d7 commit faa5269

1 file changed

Lines changed: 12 additions & 13 deletions

File tree

pom.xml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -229,17 +229,22 @@ file comparators, endian transformation classes, and much more.
229229
</contributor>
230230
</contributors>
231231

232+
<dependencyManagement>
233+
<dependencies>
234+
<dependency>
235+
<groupId>org.junit</groupId>
236+
<artifactId>junit-bom</artifactId>
237+
<version>5.7.0</version>
238+
<type>pom</type>
239+
<scope>import</scope>
240+
</dependency>
241+
</dependencies>
242+
</dependencyManagement>
243+
232244
<dependencies>
233245
<dependency>
234246
<groupId>org.junit.jupiter</groupId>
235247
<artifactId>junit-jupiter</artifactId>
236-
<version>5.7.0</version>
237-
<scope>test</scope>
238-
</dependency>
239-
<dependency>
240-
<groupId>org.junit.platform</groupId>
241-
<artifactId>junit-platform-commons</artifactId>
242-
<version>1.7.0</version>
243248
<scope>test</scope>
244249
</dependency>
245250
<dependency>
@@ -248,12 +253,6 @@ file comparators, endian transformation classes, and much more.
248253
<version>1.0.0</version>
249254
<scope>test</scope>
250255
</dependency>
251-
<dependency>
252-
<groupId>org.junit.jupiter</groupId>
253-
<artifactId>junit-jupiter-params</artifactId>
254-
<version>5.7.0</version>
255-
<scope>test</scope>
256-
</dependency>
257256
<dependency>
258257
<groupId>org.mockito</groupId>
259258
<artifactId>mockito-core</artifactId>

0 commit comments

Comments
 (0)