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 btrace-agent/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ compileTestJava {
// JDK 17+ to compile against, so pin this module's test dependency to the last JDK
// 8-compatible release instead of the repo-wide catalog version.
configurations.testCompileClasspath {
resolutionStrategy.force 'org.junit.jupiter:junit-jupiter:5.14.4'
resolutionStrategy.force 'org.junit.jupiter:junit-jupiter:6.1.2'
}
configurations.testRuntimeClasspath {
resolutionStrategy.force 'org.junit.jupiter:junit-jupiter:5.14.4'
resolutionStrategy.force 'org.junit.jupiter:junit-jupiter:6.1.2'
}

sourceSets {
Expand Down
2 changes: 1 addition & 1 deletion btrace-gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies {
// This is an included build and cannot access the root version catalog. Keep its tests on the
// last Java 8-compatible JUnit line; the production plugin remains Java 11-compatible.
testImplementation gradleTestKit()
testImplementation 'org.junit.jupiter:junit-jupiter:5.14.4'
testImplementation 'org.junit.jupiter:junit-jupiter:6.1.2'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}

Expand Down
4 changes: 2 additions & 2 deletions integration-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ compileTestJava {
// so pin this module's test dependency to the last JDK 8-compatible release instead of
// the repo-wide catalog version.
configurations.testCompileClasspath {
resolutionStrategy.force 'org.junit.jupiter:junit-jupiter:5.14.4'
resolutionStrategy.force 'org.junit.jupiter:junit-jupiter:6.1.2'
}
configurations.testRuntimeClasspath {
resolutionStrategy.force 'org.junit.jupiter:junit-jupiter:5.14.4'
resolutionStrategy.force 'org.junit.jupiter:junit-jupiter:6.1.2'
}

task buildEventsJar(type: Jar) {
Expand Down
Loading