Skip to content

Commit

Permalink
[JENKINS-48466] Provide JUnit 5 support for JenkinsRule
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed Jun 16, 2022
1 parent b834a5e commit 4128227
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@

<!-- 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>1784.v83a_b_3ce99392</jenkins-test-harness.version>
<!-- TODO https://github.com/jenkinsci/jenkins-test-harness/pull/438 -->
<jenkins-test-harness.version>1785.v779d34f50ea_0</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 +165,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 +267,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 4128227

Please sign in to comment.