File tree Expand file tree Collapse file tree 3 files changed +9
-8
lines changed
spring-boot-actuator-integration-tests
spring-boot-autoconfigure-all
src/test/java/org/springframework/boot/autoconfigure/web/servlet Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff 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+ }
Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616
17- package org .springframework .boot .actuate .web .servlet ;
17+ package org .springframework .boot .autoconfigure .web .servlet ;
1818
1919import java .net .URI ;
2020import java .util .stream .Stream ;
You can’t perform that action at this time.
0 commit comments