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 {
11
11
testImplementation(project(" :spring-boot-project:spring-boot-http-converter" ))
12
12
testImplementation(project(" :spring-boot-project:spring-boot-jackson" ))
13
13
testImplementation(project(" :spring-boot-project:spring-boot-jersey" ))
14
- testImplementation(project(" :spring-boot-project:spring-boot-jetty" ))
15
14
testImplementation(project(" :spring-boot-project:spring-boot-metrics" ))
16
15
testImplementation(project(" :spring-boot-project:spring-boot-reactor-netty" ))
17
16
testImplementation(project(" :spring-boot-project:spring-boot-test" ))
18
17
testImplementation(project(" :spring-boot-project:spring-boot-tomcat" ))
19
18
testImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
20
- testImplementation(project(" :spring-boot-project:spring-boot-undertow" ))
21
19
testImplementation(project(" :spring-boot-project:spring-boot-web-server" ))
22
20
testImplementation(project(" :spring-boot-project:spring-boot-webflux" ))
23
21
testImplementation(project(" :spring-boot-project:spring-boot-webmvc" ))
@@ -29,9 +27,4 @@ dependencies {
29
27
testImplementation(" net.minidev:json-smart" )
30
28
testImplementation(" org.springframework.security:spring-security-web" )
31
29
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"
37
30
}
Original file line number Diff line number Diff line change @@ -18,12 +18,20 @@ dependencies {
18
18
19
19
testImplementation(project(" :spring-boot-project:spring-boot-data-redis" ))
20
20
testImplementation(project(" :spring-boot-project:spring-boot-http-converter" ))
21
+ testImplementation(project(" :spring-boot-project:spring-boot-jetty" ))
21
22
testImplementation(project(" :spring-boot-project:spring-boot-security" ))
22
23
testImplementation(project(" :spring-boot-project:spring-boot-servlet" ))
23
24
testImplementation(project(" :spring-boot-project:spring-boot-session-data-redis" ))
24
25
testImplementation(project(" :spring-boot-project:spring-boot-test" ))
25
26
testImplementation(project(" :spring-boot-project:spring-boot-tomcat" ))
26
27
testImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
28
+ testImplementation(project(" :spring-boot-project:spring-boot-undertow" ))
27
29
testImplementation(project(" :spring-boot-project:spring-boot-webmvc" ))
28
30
testImplementation(testFixtures(project(" :spring-boot-project:spring-boot-web-server" )))
31
+
32
+ testRuntimeOnly(" org.apache.httpcomponents.client5:httpclient5" )
29
33
}
34
+
35
+ test {
36
+ jvmArgs + = " --add-opens=java.base/java.net=ALL-UNNAMED"
37
+ }
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package org .springframework .boot .actuate .web .servlet ;
17
+ package org .springframework .boot .autoconfigure .web .servlet ;
18
18
19
19
import java .net .URI ;
20
20
import java .util .stream .Stream ;
You can’t perform that action at this time.
0 commit comments