Skip to content

Commit 769ba9e

Browse files
committed
Merge branch '6.2.x'
2 parents 5513139 + 1ad05db commit 769ba9e

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

build.gradle

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,17 +57,13 @@ configure([rootProject] + javaProjects) { project ->
5757
apply from: "${rootDir}/gradle/ide.gradle"
5858

5959
dependencies {
60-
testImplementation("org.junit.jupiter:junit-jupiter-api")
61-
testImplementation("org.junit.jupiter:junit-jupiter-params")
62-
testImplementation("org.junit.platform:junit-platform-suite-api")
60+
testImplementation("org.junit.jupiter:junit-jupiter")
61+
testImplementation("org.junit.platform:junit-platform-suite")
6362
testImplementation("org.mockito:mockito-core")
6463
testImplementation("org.mockito:mockito-junit-jupiter")
6564
testImplementation("io.mockk:mockk")
6665
testImplementation("org.assertj:assertj-core")
67-
// Pull in the latest JUnit 5 Launcher API to ensure proper support in IDEs.
68-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
6966
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
70-
testRuntimeOnly("org.junit.platform:junit-platform-suite-engine")
7167
testRuntimeOnly("org.apache.logging.log4j:log4j-core")
7268
}
7369

spring-core/spring-core.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,8 @@ dependencies {
9090
optional("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")
9191
testFixturesImplementation("io.projectreactor:reactor-test")
9292
testFixturesImplementation("org.assertj:assertj-core")
93+
testFixturesImplementation("org.junit.jupiter:junit-jupiter")
9394
testFixturesImplementation("org.junit.platform:junit-platform-launcher")
94-
testFixturesImplementation("org.junit.jupiter:junit-jupiter-api")
95-
testFixturesImplementation("org.junit.jupiter:junit-jupiter-params")
9695
testFixturesImplementation("org.xmlunit:xmlunit-assertj")
9796
testImplementation("com.fasterxml.jackson.core:jackson-databind")
9897
testImplementation("com.fasterxml.woodstox:woodstox-core")

spring-web/spring-web.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,7 @@ dependencies {
6565
optional("tools.jackson.dataformat:jackson-dataformat-yaml")
6666
optional("com.fasterxml:aalto-xml") // out of order to avoid XML parser override
6767
testFixturesApi("jakarta.servlet:jakarta.servlet-api")
68-
testFixturesApi("org.junit.jupiter:junit-jupiter-api")
69-
testFixturesApi("org.junit.jupiter:junit-jupiter-params")
68+
testFixturesApi("org.junit.jupiter:junit-jupiter")
7069
testFixturesImplementation("io.projectreactor:reactor-test")
7170
testFixturesImplementation("org.assertj:assertj-core")
7271
testFixturesImplementation("org.bouncycastle:bcpkix-jdk18on") {

0 commit comments

Comments
 (0)