Skip to content

Commit 4b89ba7

Browse files
committed
Merge branch '3.2.x' into 3.3.x
Closes gh-42713
2 parents f46d0ac + 2c98226 commit 4b89ba7

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,14 @@ plugins {
33
id "org.springframework.boot"
44
}
55

6-
apply plugin: "io.spring.dependency-management"
7-
86
repositories {
97
maven { url "file:${rootDir}/../docker-test-maven-repository"}
108
mavenCentral()
119
spring.mavenRepositories()
1210
}
1311

1412
dependencies {
13+
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
1514
implementation("org.apache.tomcat.embed:tomcat-embed-core")
1615
}
1716

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,14 @@ plugins {
33
id "org.springframework.boot"
44
}
55

6-
apply plugin: "io.spring.dependency-management"
7-
86
repositories {
97
maven { url "file:${rootDir}/../docker-test-maven-repository"}
108
mavenCentral()
119
spring.mavenRepositories()
1210
}
1311

1412
dependencies {
13+
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
1514
implementation("org.springframework.boot:spring-boot-starter-web")
1615
implementation("org.webjars:jquery:3.5.0")
1716
}

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,14 @@ plugins {
33
id "org.springframework.boot"
44
}
55

6-
apply plugin: "io.spring.dependency-management"
7-
86
repositories {
97
maven { url "file:${rootDir}/../docker-test-maven-repository"}
108
mavenCentral()
119
spring.mavenRepositories()
1210
}
1311

1412
dependencies {
13+
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
1514
implementation("org.springframework.boot:spring-boot-starter-web")
1615
implementation("org.webjars:jquery:3.5.0")
1716
}

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,14 @@ plugins {
55
id "org.springframework.boot"
66
}
77

8-
apply plugin: "io.spring.dependency-management"
9-
108
repositories {
119
maven { url "file:${rootDir}/../docker-test-maven-repository"}
1210
mavenCentral()
1311
spring.mavenRepositories()
1412
}
1513

1614
dependencies {
15+
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
1716
implementation("org.springframework.boot:spring-boot-starter")
1817
implementation("org.bouncycastle:bcprov-jdk18on:1.78.1")
1918
}

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

Lines changed: 1 addition & 2 deletions
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
repositories {
1311
maven { url "file:${rootDir}/../test-repository"}
1412
mavenCentral()
@@ -50,6 +48,7 @@ dependencies {
5048
compileOnly("org.eclipse.jetty.ee10:jetty-ee10-servlet")
5149
compileOnly("org.springframework:spring-web")
5250

51+
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
5352
implementation("org.springframework.boot:spring-boot-starter")
5453

5554
app(files(resourcesJar))

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

Lines changed: 1 addition & 2 deletions
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
repositories {
97
maven { url "file:${rootDir}/../int-test-maven-repository"}
108
mavenCentral()
@@ -13,5 +11,6 @@ repositories {
1311
}
1412

1513
dependencies {
14+
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
1615
implementation("org.springframework.boot:spring-boot-starter-web")
1716
}

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ plugins {
55
id "org.springframework.boot" version "3.3.0-SNAPSHOT"
66
}
77

8-
apply plugin: "io.spring.dependency-management"
9-
108
repositories {
119
maven { url "file:${rootDir}/../int-test-maven-repository"}
1210
mavenCentral()
@@ -32,6 +30,7 @@ configurations {
3230
dependencies {
3331
compileOnly("org.springframework:spring-webflux")
3432

33+
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
3534
implementation("org.springframework.boot:spring-boot-starter")
3635
implementation("org.springframework.boot:spring-boot-starter-actuator")
3736

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ plugins {
55
id "org.springframework.boot" version "3.3.0-SNAPSHOT"
66
}
77

8-
apply plugin: "io.spring.dependency-management"
9-
108
repositories {
119
maven { url "file:${rootDir}/../int-test-maven-repository"}
1210
mavenCentral()
@@ -28,6 +26,8 @@ configurations {
2826

2927
dependencies {
3028
compileOnly("jakarta.servlet:jakarta.servlet-api:6.0.0")
29+
30+
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
3131
implementation("org.springframework.boot:spring-boot-starter-web") {
3232
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
3333
}

0 commit comments

Comments
 (0)