Skip to content

Commit 8978d8c

Browse files
committed
Avoid using deprecated spring-boot-starter-web
1 parent fb2e898 commit 8978d8c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

documentation/spring-boot-docs/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ dependencies {
230230
resolvedBom(project(path: ":platform:spring-boot-dependencies", configuration: "resolvedBom"))
231231

232232
springApplicationExample(platform(project(":platform:spring-boot-dependencies")))
233-
springApplicationExample(project(path: ":starter:spring-boot-starter-web"))
233+
springApplicationExample(project(path: ":starter:spring-boot-starter-webmvc"))
234234

235235
testImplementation(project(":module:spring-boot-actuator-autoconfigure"))
236236
testImplementation(project(":test-support:spring-boot-test-support"))

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ configurations {
3232
dependencies {
3333
app project(path: ":platform:spring-boot-dependencies", configuration: "mavenRepository")
3434
app project(path: ":build-plugin:spring-boot-gradle-plugin", configuration: "mavenRepository")
35-
app project(path: ":starter:spring-boot-starter-web", configuration: "mavenRepository")
35+
app project(path: ":starter:spring-boot-starter-webmvc", configuration: "mavenRepository")
3636
app project(path: ":starter:spring-boot-starter", configuration: "mavenRepository")
3737
app("org.bouncycastle:bcprov-jdk18on:1.78.1")
3838

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ repositories {
3232

3333
dependencies {
3434
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
35-
implementation("org.springframework.boot:spring-boot-starter-web")
35+
implementation("org.springframework.boot:spring-boot-starter-webmvc")
3636
implementation("org.webjars:jquery:3.5.0")
3737
}

integration-test/spring-boot-sni-integration-tests/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies {
3131
app project(path: ":starter:spring-boot-starter", configuration: "mavenRepository")
3232
app project(path: ":starter:spring-boot-starter-actuator", configuration: "mavenRepository")
3333
app project(path: ":starter:spring-boot-starter-tomcat", configuration: "mavenRepository")
34-
app project(path: ":starter:spring-boot-starter-web", configuration: "mavenRepository")
34+
app project(path: ":starter:spring-boot-starter-webmvc", configuration: "mavenRepository")
3535
app project(path: ":starter:spring-boot-starter-webflux", configuration: "mavenRepository")
3636
app project(path: ":build-plugin:spring-boot-gradle-plugin", configuration: "mavenRepository")
3737
app project(path: ":module:spring-boot-webflux", configuration: "mavenRepository")

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ repositories {
3333
dependencies {
3434
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
3535
implementation("org.springframework.boot:spring-boot-restclient")
36-
implementation("org.springframework.boot:spring-boot-starter-web")
36+
implementation("org.springframework.boot:spring-boot-starter-webmvc")
3737
}

0 commit comments

Comments
 (0)