Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/main/resources/META-INF/rewrite/junit6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,15 @@ recipeList:
groupId: org.junit.jupiter
artifactId: junit-jupiter*
newVersion: 6.x
# Gradle no longer adds junit-platform-launcher to the test runtime classpath automatically;
# for Maven the maven-surefire-plugin already provides it, so only Gradle builds are changed.
- org.openrewrite.gradle.AddDependency:
groupId: org.junit.platform
artifactId: junit-platform-launcher
version: 6.x
onlyIfUsing: org.junit.jupiter.api.*
configuration: testRuntimeOnly
acceptTransitive: true
- org.openrewrite.maven.UpgradePluginVersion:
groupId: org.apache.maven.plugins
artifactId: maven-failsafe-plugin
Expand Down
Loading