Skip to content

Commit

Permalink
Upgrade JUnit from 4 to 5 (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored Aug 7, 2022
1 parent 80e5acf commit f62ff12
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,18 @@
<gitHubRepo>jenkinsci/lib-${project.artifactId}</gitHubRepo>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.9.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.kohsuke.metainf-services</groupId>
Expand All @@ -48,8 +60,13 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit f62ff12

Please sign in to comment.