Skip to content

Commit 2d250e9

Browse files
committed
Junit 5 migration
1 parent 481a7f7 commit 2d250e9

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.jenkins-ci.plugins</groupId>
66
<artifactId>plugin</artifactId>
7-
<version>5.19</version>
7+
<version>5.22</version>
88
<relativePath />
99
</parent>
1010
<groupId>io.jenkins.plugins</groupId>
@@ -33,6 +33,7 @@
3333
<jenkins.version>${jenkins.baseline}.3</jenkins.version>
3434
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
3535
<spotless.check.skip>false</spotless.check.skip>
36+
<ban-junit4-imports.skip>false</ban-junit4-imports.skip>
3637
</properties>
3738

3839
<dependencyManagement>

src/test/java/io/jenkins/plugins/SmokeTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package io.jenkins.plugins;
22

3-
import static org.junit.Assert.assertEquals;
4-
import static org.junit.Assert.assertTrue;
3+
import static org.junit.jupiter.api.Assertions.assertEquals;
4+
import static org.junit.jupiter.api.Assertions.assertTrue;
55

66
import java.util.Arrays;
77
import org.json.JSONArray;

0 commit comments

Comments
 (0)