Skip to content

Commit fba8749

Browse files
committed
fixup! Move Servlet high-level infrastructure to spring-boot-servlet
1 parent 2832cb9 commit fba8749

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,11 @@ dependencies {
1111
testImplementation(project(":spring-boot-project:spring-boot-http-converter"))
1212
testImplementation(project(":spring-boot-project:spring-boot-jackson"))
1313
testImplementation(project(":spring-boot-project:spring-boot-jersey"))
14-
testImplementation(project(":spring-boot-project:spring-boot-jetty"))
1514
testImplementation(project(":spring-boot-project:spring-boot-metrics"))
1615
testImplementation(project(":spring-boot-project:spring-boot-reactor-netty"))
1716
testImplementation(project(":spring-boot-project:spring-boot-test"))
1817
testImplementation(project(":spring-boot-project:spring-boot-tomcat"))
1918
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
20-
testImplementation(project(":spring-boot-project:spring-boot-undertow"))
2119
testImplementation(project(":spring-boot-project:spring-boot-web-server"))
2220
testImplementation(project(":spring-boot-project:spring-boot-webflux"))
2321
testImplementation(project(":spring-boot-project:spring-boot-webmvc"))
@@ -29,9 +27,4 @@ dependencies {
2927
testImplementation("net.minidev:json-smart")
3028
testImplementation("org.springframework.security:spring-security-web")
3129
testRuntimeOnly("ch.qos.logback:logback-classic")
32-
testRuntimeOnly("org.apache.httpcomponents.client5:httpclient5")
33-
}
34-
35-
test {
36-
jvmArgs += "--add-opens=java.base/java.net=ALL-UNNAMED"
3730
}

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,20 @@ dependencies {
1818

1919
testImplementation(project(":spring-boot-project:spring-boot-data-redis"))
2020
testImplementation(project(":spring-boot-project:spring-boot-http-converter"))
21+
testImplementation(project(":spring-boot-project:spring-boot-jetty"))
2122
testImplementation(project(":spring-boot-project:spring-boot-security"))
2223
testImplementation(project(":spring-boot-project:spring-boot-servlet"))
2324
testImplementation(project(":spring-boot-project:spring-boot-session-data-redis"))
2425
testImplementation(project(":spring-boot-project:spring-boot-test"))
2526
testImplementation(project(":spring-boot-project:spring-boot-tomcat"))
2627
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
28+
testImplementation(project(":spring-boot-project:spring-boot-undertow"))
2729
testImplementation(project(":spring-boot-project:spring-boot-webmvc"))
2830
testImplementation(testFixtures(project(":spring-boot-project:spring-boot-web-server")))
31+
32+
testRuntimeOnly("org.apache.httpcomponents.client5:httpclient5")
2933
}
34+
35+
test {
36+
jvmArgs += "--add-opens=java.base/java.net=ALL-UNNAMED"
37+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.boot.actuate.web.servlet;
17+
package org.springframework.boot.autoconfigure.web.servlet;
1818

1919
import java.net.URI;
2020
import java.util.stream.Stream;

0 commit comments

Comments
 (0)