Skip to content

Commit 6ca4371

Browse files
committed
started migration to Junit 5
1 parent 04eff98 commit 6ca4371

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

pom.xml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
<maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
1919
<maven.home>${user.home}/SDKs/apache-maven-3.5.0</maven.home>
2020
<min.maven.api>3.0</min.maven.api>
21+
<junit.version>5.2.0</junit.version>
2122
</properties>
2223

2324
<issueManagement>
@@ -235,9 +236,9 @@
235236
<scope>compile</scope>
236237
</dependency>
237238
<dependency>
238-
<groupId>junit</groupId>
239-
<artifactId>junit</artifactId>
240-
<version>4.12</version>
239+
<groupId>org.junit.vintage</groupId>
240+
<artifactId>junit-vintage-engine</artifactId>
241+
<version>${junit.version}</version>
241242
<scope>test</scope>
242243
</dependency>
243244
<dependency>
@@ -462,6 +463,13 @@
462463
<test.folder>${project.build.testOutputDirectory}</test.folder>
463464
</systemPropertyVariables>
464465
</configuration>
466+
<dependencies>
467+
<dependency>
468+
<groupId>org.junit.platform</groupId>
469+
<artifactId>junit-platform-surefire-provider</artifactId>
470+
<version>1.2.0</version>
471+
</dependency>
472+
</dependencies>
465473
</plugin>
466474

467475
<plugin>

0 commit comments

Comments
 (0)