Skip to content

Commit

Permalink
[JENKINS-48466] Provide JUnit 5 support for JenkinsRule (#560)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored Jul 18, 2022
1 parent 5c8dd46 commit 70e5e2b
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@

<!-- Filled in by "maven-hpi-plugin" with the path to "org-netbeans-insane-hook.jar" extracted from "jenkins-test-harness" -->
<jenkins.insaneHook />
<jenkins-test-harness.version>1812.v6d4e97d91fd8</jenkins-test-harness.version>
<jenkins-test-harness.version>1813.v14f5db_a_f2b_d3</jenkins-test-harness.version>

<hpi-plugin.version>3.28</hpi-plugin.version>
<stapler-plugin.version>1.17</stapler-plugin.version>
Expand Down Expand Up @@ -164,9 +164,11 @@
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.8.2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.codehaus.mojo</groupId>
Expand Down Expand Up @@ -264,8 +266,13 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</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 70e5e2b

Please sign in to comment.