Skip to content

Commit

Permalink
fixup! [SQUASH] Add junit-jupiter-api as explicit dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Philzen committed Jun 23, 2024
1 parent 51758ba commit 248c784
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ dependencies {

// ↓ Classpath resource for MigrateTestNg* recipes
testRuntimeOnly("org.testng:testng:7.5.1") // 7.5.x is the last Java 8 compatible version: https://github.com/testng-team/testng/issues/2775
testRuntime("org.junit.jupiter:junit-jupiter-api:latest.release")

// ↓ to allow using testing recipes in our recipe list
testRuntimeOnly("org.openrewrite.recipe:rewrite-testing-frameworks:latest.release") {
Expand Down
8 changes: 1 addition & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
<scope>runtime</scope>
</dependency>

<dependency>
Expand Down Expand Up @@ -114,12 +114,6 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>runtime</scope>
</dependency>

<!-- ↓ Classpath resource for MigrateTestNg* recipes -->
<dependency>
<groupId>org.testng</groupId>
Expand Down

0 comments on commit 248c784

Please sign in to comment.