Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ dependencies {
"commonImplementation"("org.checkerframework:checker-qual:3.55.1")

// Both the regular test and the compatibility adapter tests require this
"testCommonImplementation"("org.junit.jupiter:junit-jupiter:5.14.3")
"testCommonImplementation"("org.junit.jupiter:junit-jupiter:6.0.3")

// Each adapter depends on a specific version of commons-lang3, which will be used to
// compile the production sources and run the tests, but won't leak to the runtime classpath
Expand All @@ -71,7 +71,7 @@ dependencies {
testImplementation("org.apache.commons:commons-lang3:[3.0,)!!$latestVersion")

// Required for mutation testing and JUnit 5.12 and later
"testCommonRuntimeOnly"("org.junit.platform:junit-platform-launcher:1.14.3")
"testCommonRuntimeOnly"("org.junit.platform:junit-platform-launcher:6.0.3")
}

tasks.withType<Test>().configureEach {
Expand Down
4 changes: 2 additions & 2 deletions plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ plugins {
}

dependencies {
testImplementation("org.junit.jupiter:junit-jupiter:5.14.3")
testImplementation("org.junit.jupiter:junit-jupiter:6.0.3")
testImplementation("com.google.truth:truth:1.4.5")
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.14.3")
testRuntimeOnly("org.junit.platform:junit-platform-launcher:6.0.3")
testImplementation(gradleTestKit())
}

Expand Down
Loading