Skip to content

Commit 788a42d

Browse files
committed
Merge branch '2.3.x' into 2.4.x
See gh-25076
2 parents 230b4ab + 67479b6 commit 788a42d

File tree

115 files changed

+9
-219
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+9
-219
lines changed

buildSrc/src/main/java/org/springframework/boot/build/JavaConventions.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -60,6 +60,9 @@
6060
* Checkstyle}, {@link TestFailuresPlugin Test Failures}, and {@link TestRetryPlugin Test
6161
* Retry} plugins are applied
6262
* <li>{@link Test} tasks are configured to use JUnit Platform and use a max heap of 1024M
63+
* <li>A {@code testRuntimeOnly} dependency upon
64+
* {@code org.junit.platform:junit-platform-launcher} is added to projects with the
65+
* {@link JavaPlugin} applied
6366
* <li>{@link JavaCompile}, {@link Javadoc}, and {@link FormatTask} tasks are configured
6467
* to use UTF-8 encoding
6568
* <li>{@link JavaCompile} tasks are configured to use {@code -parameters} and, when
@@ -146,6 +149,8 @@ private void configureTestConventions(Project project) {
146149
test.useJUnitPlatform();
147150
test.setMaxHeapSize("1024M");
148151
});
152+
project.getPlugins().withType(JavaPlugin.class, (javaPlugin) -> project.getDependencies()
153+
.add(JavaPlugin.TEST_RUNTIME_ONLY_CONFIGURATION_NAME, "org.junit.platform:junit-platform-launcher"));
149154
project.getPlugins().apply(TestRetryPlugin.class);
150155
project.getTasks().withType(Test.class,
151156
(test) -> project.getPlugins().withType(TestRetryPlugin.class, (testRetryPlugin) -> {

spring-boot-project/spring-boot-actuator-autoconfigure/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ dependencies {
143143
testImplementation("org.springframework.security:spring-security-test")
144144
testImplementation("org.yaml:snakeyaml")
145145

146-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
147146
testRuntimeOnly("org.springframework.security:spring-security-oauth2-jose")
148147
testRuntimeOnly("org.springframework.security:spring-security-oauth2-resource-server")
149148
testRuntimeOnly("org.springframework.security:spring-security-saml2-service-provider")

spring-boot-project/spring-boot-actuator/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,5 @@ dependencies {
8989
testRuntimeOnly("javax.xml.bind:jaxb-api")
9090
testRuntimeOnly("org.apache.tomcat.embed:tomcat-embed-el")
9191
testRuntimeOnly("org.glassfish.jersey.ext:jersey-spring5")
92-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
9392
testRuntimeOnly("org.hsqldb:hsqldb")
9493
}

spring-boot-project/spring-boot-autoconfigure/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,5 +186,4 @@ dependencies {
186186
testImplementation("org.yaml:snakeyaml")
187187

188188
testRuntimeOnly("org.jetbrains.kotlin:kotlin-reflect")
189-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
190189
}

spring-boot-project/spring-boot-cli/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@ dependencies {
6666
testImplementation("org.mockito:mockito-junit-jupiter")
6767
testImplementation("org.springframework:spring-test")
6868

69-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
70-
7169
testRepository(project(path: ":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator", configuration: "mavenRepository"))
7270
testRepository(project(path: ":spring-boot-project:spring-boot-starters:spring-boot-starter-amqp", configuration: "mavenRepository"))
7371
testRepository(project(path: ":spring-boot-project:spring-boot-starters:spring-boot-starter-aop", configuration: "mavenRepository"))

spring-boot-project/spring-boot-devtools/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ dependencies {
7070
testImplementation("org.thymeleaf:thymeleaf-spring5")
7171
testImplementation("nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect")
7272

73-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
7473
testRuntimeOnly("org.yaml:snakeyaml")
7574
}
7675

spring-boot-project/spring-boot-docs/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ dependencies {
103103

104104
testRuntimeOnly(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web"))
105105
testRuntimeOnly("com.h2database:h2")
106-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
107106
testRuntimeOnly("org.springframework:spring-jdbc")
108107

109108
testSlices(project(path: ":spring-boot-project:spring-boot-test-autoconfigure", configuration: "testSliceMetadata"))

spring-boot-project/spring-boot-properties-migrator/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,4 @@ dependencies {
1414
testImplementation("org.junit.jupiter:junit-jupiter")
1515
testImplementation("org.assertj:assertj-core")
1616
testImplementation("org.springframework:spring-test")
17-
18-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1917
}

spring-boot-project/spring-boot-test-autoconfigure/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,6 @@ dependencies {
8585
testImplementation("org.testcontainers:neo4j")
8686
testImplementation("org.testcontainers:testcontainers")
8787
testImplementation("org.thymeleaf:thymeleaf")
88-
89-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
9088
}
9189

9290
configurations {

spring-boot-project/spring-boot-test/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ dependencies {
4949
testImplementation("org.springframework:spring-webmvc")
5050
testImplementation("org.testng:testng")
5151

52-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
5352
testRuntimeOnly("org.junit.vintage:junit-vintage-engine")
5453
}
5554

spring-boot-project/spring-boot-tools/spring-boot-antlib/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ dependencies {
2424

2525
implementation(project(":spring-boot-project:spring-boot-tools:spring-boot-loader-tools"))
2626
implementation("org.springframework:spring-core")
27-
28-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
2927
}
3028

3129
task copyIntegrationTestSources(type: Copy) {

spring-boot-project/spring-boot-tools/spring-boot-autoconfigure-processor/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,4 @@ dependencies {
1313
testImplementation("org.assertj:assertj-core")
1414
testImplementation("org.springframework:spring-core")
1515
testImplementation("org.junit.jupiter:junit-jupiter")
16-
17-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1816
}

spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies {
1313
api("org.apache.commons:commons-compress:1.19")
1414
api("org.apache.httpcomponents:httpclient")
1515
api("org.springframework:spring-core")
16-
16+
1717
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
1818
testImplementation("com.jayway.jsonpath:json-path")
1919
testImplementation("org.assertj:assertj-core")
@@ -23,6 +23,4 @@ dependencies {
2323
testImplementation("org.mockito:mockito-core")
2424
testImplementation("org.mockito:mockito-junit-jupiter")
2525
testImplementation("org.skyscreamer:jsonassert")
26-
27-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
2826
}

spring-boot-project/spring-boot-tools/spring-boot-configuration-metadata/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,4 @@ dependencies {
1414
testImplementation("org.junit.jupiter:junit-jupiter")
1515
testImplementation("org.assertj:assertj-core")
1616
testImplementation("org.springframework:spring-core")
17-
18-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1917
}

spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,4 @@ dependencies {
2626
testImplementation("org.mockito:mockito-core")
2727
testImplementation("org.projectlombok:lombok")
2828
testImplementation("org.springframework:spring-core")
29-
30-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
3129
}

spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ dependencies {
4343
testImplementation("org.mockito:mockito-core")
4444
testImplementation("org.testcontainers:junit-jupiter")
4545
testImplementation("org.testcontainers:testcontainers")
46-
47-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
4846
}
4947

5048
gradlePlugin {

spring-boot-project/spring-boot-tools/spring-boot-jarmode-layertools/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,4 @@ dependencies {
1414
testImplementation("org.junit.jupiter:junit-jupiter")
1515
testImplementation("org.mockito:mockito-core")
1616
testImplementation("org.mockito:mockito-junit-jupiter")
17-
18-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1917
}

spring-boot-project/spring-boot-tools/spring-boot-loader-tools/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ dependencies {
3131
testImplementation("org.junit.jupiter:junit-jupiter")
3232
testImplementation("org.mockito:mockito-core")
3333
testImplementation("org.zeroturnaround:zt-zip:1.13")
34-
35-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
3634
}
3735

3836
sourceSets {

spring-boot-project/spring-boot-tools/spring-boot-loader/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ dependencies {
1818

1919
testRuntimeOnly("ch.qos.logback:logback-classic")
2020
testRuntimeOnly("org.bouncycastle:bcprov-jdk16:1.46")
21-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
2221
testRuntimeOnly("org.slf4j:jcl-over-slf4j")
2322
testRuntimeOnly("org.springframework:spring-webmvc")
24-
}
23+
}

spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ dependencies {
4242
testImplementation("org.mockito:mockito-core")
4343
testImplementation("org.mockito:mockito-junit-jupiter")
4444
testImplementation("org.springframework:spring-core")
45-
46-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
4745
}
4846

4947
task syncSpringBootDependenciesBom(type: Sync) {

spring-boot-project/spring-boot-tools/spring-boot-test-support/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,4 @@ dependencies {
3434
testImplementation("org.springframework:spring-context")
3535

3636
testRuntimeOnly("org.hibernate.validator:hibernate-validator")
37-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
3837
}

spring-boot-project/spring-boot/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ dependencies {
100100
testImplementation("org.springframework.data:spring-data-r2dbc")
101101
testImplementation("org.xerial:sqlite-jdbc")
102102

103-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
104103
testRuntimeOnly("org.testcontainers:jdbc") {
105104
exclude group: "javax.annotation", module: "javax.annotation-api"
106105
exclude group: "javax.xml.bind", module: "jaxb-api"

spring-boot-tests/spring-boot-deployment-tests/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ dependencies {
2727
intTestImplementation("org.springframework:spring-web")
2828

2929
providedRuntime(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat"))
30-
31-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
3230
}
3331

3432
intTest {

spring-boot-tests/spring-boot-integration-tests/spring-boot-configuration-processor-tests/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,4 @@ dependencies {
1414

1515
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
1616
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-configuration-metadata"))
17-
18-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1917
}

spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ dependencies {
2020
intTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
2121
intTestImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
2222
intTestImplementation("org.testcontainers:testcontainers")
23-
24-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
2523
}
2624

2725
task syncMavenRepository(type: Sync) {

spring-boot-tests/spring-boot-integration-tests/spring-boot-loader-tests/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ dependencies {
2020
intTestImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
2121
intTestImplementation("org.testcontainers:junit-jupiter")
2222
intTestImplementation("org.testcontainers:testcontainers")
23-
24-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
2523
}
2624

2725
task syncMavenRepository(type: Sync) {

spring-boot-tests/spring-boot-integration-tests/spring-boot-server-tests/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ dependencies {
3434
testRepository(project(path: ":spring-boot-project:spring-boot-starters:spring-boot-starter-undertow", configuration: "mavenRepository"))
3535

3636
testRuntimeOnly(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-logging"))
37-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
3837
}
3938

4039
task prepareMavenBinaries(type: org.springframework.boot.build.mavenplugin.PrepareMavenBinaries) {

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-activemq/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,4 @@ dependencies {
99
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-activemq"))
1010

1111
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
12-
13-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1412
}

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-actuator-custom-security/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,4 @@ dependencies {
1616
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
1717

1818
testRuntimeOnly("org.apache.httpcomponents:httpclient")
19-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
2019
}

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-actuator-log4j2/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,4 @@ dependencies {
1717
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web"))
1818

1919
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
20-
21-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
2220
}

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-actuator-noweb/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,4 @@ dependencies {
1111
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator"))
1212

1313
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
14-
15-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1614
}

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-actuator-ui/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,4 @@ dependencies {
1212
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web"))
1313

1414
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
15-
16-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1715
}

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-actuator/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,5 @@ dependencies {
1515
runtimeOnly("com.h2database:h2")
1616

1717
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
18-
1918
testRuntimeOnly("org.apache.httpcomponents:httpclient")
20-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
2119
}

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-amqp/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,4 @@ description = "Spring Boot AMQP smoke test"
77

88
dependencies {
99
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-amqp"))
10-
11-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1210
}

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-animated-banner/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,4 @@ description = "Spring Boot animated banner smoke test"
77

88
dependencies {
99
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
10-
11-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1210
}

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-ant/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ dependencies {
3737
testImplementation("org.assertj:assertj-core")
3838
testImplementation("org.junit.jupiter:junit-jupiter")
3939
testImplementation("org.springframework:spring-core")
40-
41-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
4240
}
4341

4442
task syncTestRepository(type: Sync) {

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-aop/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,4 @@ dependencies {
99
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-aop"))
1010

1111
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
12-
13-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1412
}

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-atmosphere/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,4 @@ dependencies {
1414
testImplementation(enforcedPlatform(project(":spring-boot-project:spring-boot-dependencies")))
1515
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
1616
testImplementation("org.springframework:spring-websocket")
17-
18-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1917
}

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-batch/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,8 @@ description = "Spring Boot Batch smoke test"
77

88
dependencies {
99
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-batch"))
10-
10+
1111
runtimeOnly("org.hsqldb:hsqldb")
1212

1313
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
14-
15-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1614
}

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-cache/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ dependencies {
3939

4040
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
4141

42-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
43-
4442
if (project.hasProperty("cache")) {
4543
caches[project.getProperty("cache")].each { runtimeOnly it }
4644
}

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-data-couchbase/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,4 @@ dependencies {
99
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-couchbase"))
1010

1111
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
12-
13-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1412
}

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-data-elasticsearch/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,4 @@ dependencies {
99
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-elasticsearch"))
1010

1111
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
12-
13-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1412
}

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-data-jdbc/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,4 @@ dependencies {
1212
runtimeOnly("com.h2database:h2")
1313

1414
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
15-
16-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1715
}

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-data-jpa/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,4 @@ dependencies {
1313
runtimeOnly("com.h2database:h2")
1414

1515
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
16-
17-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1816
}

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-data-ldap/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,4 @@ dependencies {
1111
runtimeOnly("com.unboundid:unboundid-ldapsdk")
1212

1313
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
14-
15-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1614
}

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-data-mongodb/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,4 @@ dependencies {
1111
runtimeOnly("de.flapdoodle.embed:de.flapdoodle.embed.mongo")
1212

1313
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
14-
15-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1614
}

0 commit comments

Comments
 (0)