Skip to content

Commit c19ed6b

Browse files
committed
Version bump JUnit to 5.2.0
Related version bumps of surefire and other libs
1 parent 843e2d4 commit c19ed6b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

pom.xml

+6-4
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,11 @@
5555
<properties>
5656
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5757
<java.version>1.8</java.version>
58-
<junit.platform.version>1.0.3</junit.platform.version>
59-
<junit.jupiter.version>5.0.3</junit.jupiter.version>
58+
<maven.surefire.version>2.21.0</maven.surefire.version>
59+
<junit.platform.version>1.2.0</junit.platform.version>
60+
<junit.jupiter.version>5.2.0</junit.jupiter.version>
6061
<javax.json.version>1.1.2</javax.json.version>
62+
<jacoco.version>0.8.1</jacoco.version>
6163
</properties>
6264

6365
<build>
@@ -86,7 +88,7 @@
8688
</plugin>
8789
<plugin>
8890
<artifactId>maven-surefire-plugin</artifactId>
89-
<version>2.19.1</version>
91+
<version>${maven.surefire.version}</version>
9092
<configuration>
9193
<includes>
9294
<include>**/Test*.java</include>
@@ -111,7 +113,7 @@
111113
<plugin>
112114
<groupId>org.jacoco</groupId>
113115
<artifactId>jacoco-maven-plugin</artifactId>
114-
<version>0.8.0</version>
116+
<version>${jacoco.version}</version>
115117
<executions>
116118
<execution>
117119
<id>default-prepare-agent</id>

0 commit comments

Comments
 (0)