Upgrade JUnit depedency to 5.4.0 (closes #402)

Upgrade the JUnit dependency to the latest available 5.4.0.

Note that JUnit simplified its artifacts, and now it contains a
single, simple org.junit:junit-jupiter artifact.
This commit is contained in:
Allon Mureinik 2019-02-08 15:28:02 +02:00 committed by pascalschumacher
parent 17bbe77262
commit 2273b6e44e
1 changed files with 2 additions and 12 deletions

14
pom.xml
View File

@ -524,17 +524,7 @@
<!-- testing -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
@ -627,7 +617,7 @@
<jmh.version>1.21</jmh.version>
<uberjar.name>benchmarks</uberjar.name>
<junit.version>5.3.2</junit.version>
<junit.version>5.4.0</junit.version>
<commons.jacoco.version>0.8.2</commons.jacoco.version>