Skip to content

Commit 1e33e6b

Browse files
committed
Merge branch '3.3.x'
Closes spring-projectsgh-42714
2 parents 1b6b9ef + 4b89ba7 commit 1e33e6b

File tree

8 files changed

+9
-16
lines changed
  • spring-boot-tests/spring-boot-integration-tests

8 files changed

+9
-16
lines changed

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ plugins {
33
id "org.springframework.boot"
44
}
55

6-
apply plugin: "io.spring.dependency-management"
7-
86
java {
97
sourceCompatibility = '17'
108
targetCompatibility = '17'
@@ -17,6 +15,7 @@ repositories {
1715
}
1816

1917
dependencies {
18+
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
2019
implementation("org.apache.tomcat.embed:tomcat-embed-core")
2120
}
2221

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ plugins {
33
id "org.springframework.boot"
44
}
55

6-
apply plugin: "io.spring.dependency-management"
7-
86
java {
97
sourceCompatibility = '17'
108
targetCompatibility = '17'
@@ -17,6 +15,7 @@ repositories {
1715
}
1816

1917
dependencies {
18+
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
2019
implementation("org.springframework.boot:spring-boot-starter-web")
2120
implementation("org.webjars:jquery:3.5.0")
2221
}

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ plugins {
33
id "org.springframework.boot"
44
}
55

6-
apply plugin: "io.spring.dependency-management"
7-
86
java {
97
sourceCompatibility = '17'
108
targetCompatibility = '17'
@@ -17,6 +15,7 @@ repositories {
1715
}
1816

1917
dependencies {
18+
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
2019
implementation("org.springframework.boot:spring-boot-starter-web")
2120
implementation("org.webjars:jquery:3.5.0")
2221
}

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ plugins {
55
id "org.springframework.boot"
66
}
77

8-
apply plugin: "io.spring.dependency-management"
9-
108
java {
119
sourceCompatibility = '17'
1210
targetCompatibility = '17'
@@ -19,6 +17,7 @@ repositories {
1917
}
2018

2119
dependencies {
20+
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
2221
implementation("org.springframework.boot:spring-boot-starter")
2322
implementation("org.bouncycastle:bcprov-jdk18on:1.78.1")
2423
}

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ plugins {
77
id "war"
88
}
99

10-
apply plugin: "io.spring.dependency-management"
11-
1210
java {
1311
sourceCompatibility = '17'
1412
targetCompatibility = '17'
@@ -55,6 +53,7 @@ dependencies {
5553
compileOnly("org.eclipse.jetty.ee10:jetty-ee10-servlet")
5654
compileOnly("org.springframework:spring-web")
5755

56+
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
5857
implementation("org.springframework.boot:spring-boot-starter")
5958

6059
app(files(resourcesJar))

spring-boot-tests/spring-boot-integration-tests/spring-boot-sni-tests/spring-boot-sni-client-app/build.gradle

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ plugins {
33
id "org.springframework.boot"
44
}
55

6-
apply plugin: "io.spring.dependency-management"
7-
86
java {
97
sourceCompatibility = '17'
108
targetCompatibility = '17'
@@ -18,5 +16,6 @@ repositories {
1816
}
1917

2018
dependencies {
19+
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
2120
implementation("org.springframework.boot:spring-boot-starter-web")
2221
}

spring-boot-tests/spring-boot-integration-tests/spring-boot-sni-tests/spring-boot-sni-reactive-app/build.gradle

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ plugins {
55
id "org.springframework.boot"
66
}
77

8-
apply plugin: "io.spring.dependency-management"
9-
108
java {
119
sourceCompatibility = '17'
1210
targetCompatibility = '17'
@@ -37,6 +35,7 @@ configurations {
3735
dependencies {
3836
compileOnly("org.springframework:spring-webflux")
3937

38+
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
4039
implementation("org.springframework.boot:spring-boot-starter")
4140
implementation("org.springframework.boot:spring-boot-starter-actuator")
4241

spring-boot-tests/spring-boot-integration-tests/spring-boot-sni-tests/spring-boot-sni-servlet-app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ plugins {
55
id "org.springframework.boot"
66
}
77

8-
apply plugin: "io.spring.dependency-management"
9-
108
java {
119
sourceCompatibility = '17'
1210
targetCompatibility = '17'
@@ -33,6 +31,8 @@ configurations {
3331

3432
dependencies {
3533
compileOnly("jakarta.servlet:jakarta.servlet-api:6.0.0")
34+
35+
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
3636
implementation("org.springframework.boot:spring-boot-starter-web") {
3737
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
3838
}

0 commit comments

Comments
 (0)