File tree Expand file tree Collapse file tree 19 files changed +18
-51
lines changed
spring-boot-system-tests/spring-boot-deployment-tests
spring-boot-integration-tests/spring-boot-server-tests
spring-boot-smoke-test-actuator
spring-boot-smoke-test-actuator-custom-security
spring-boot-smoke-test-jetty-ssl
spring-boot-smoke-test-oauth2-client
spring-boot-smoke-test-reactive-oauth2-client
spring-boot-smoke-test-saml2-service-provider
spring-boot-smoke-test-tomcat-multi-connectors
spring-boot-smoke-test-tomcat-ssl
spring-boot-smoke-test-traditional
spring-boot-smoke-test-undertow-ssl
spring-boot-smoke-test-web-secure
spring-boot-smoke-test-web-secure-custom
spring-boot-smoke-test-web-secure-jdbc Expand file tree Collapse file tree 19 files changed +18
-51
lines changed Original file line number Diff line number Diff line change @@ -31,9 +31,7 @@ dependencies {
31
31
intTestImplementation(project(" :spring-boot-project:spring-boot-autoconfigure" ))
32
32
intTestImplementation(project(" :spring-boot-project:spring-boot-test" ))
33
33
intTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
34
- intTestImplementation(" org.apache.httpcomponents:httpclient" ) {
35
- exclude group : " commons-logging" , module : " commons-logging"
36
- }
34
+ intTestImplementation(" org.apache.httpcomponents.client5:httpclient5" )
37
35
intTestImplementation(" org.assertj:assertj-core" )
38
36
intTestImplementation(" org.awaitility:awaitility" )
39
37
intTestImplementation(" org.junit.jupiter:junit-jupiter" )
Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ dependencies {
86
86
exclude group : " commons-logging" , module : " commons-logging"
87
87
exclude group : " xml-apis" , module : " xml-apis"
88
88
}
89
+ implementation(" org.apache.httpcomponents.client5:httpclient5" )
89
90
implementation(" org.apache.commons:commons-dbcp2" ) {
90
91
exclude group : " commons-logging" , module : " commons-logging"
91
92
}
Original file line number Diff line number Diff line change @@ -18,9 +18,7 @@ dependencies {
18
18
optional(" jakarta.json.bind:jakarta.json.bind-api" )
19
19
optional(" jakarta.servlet:jakarta.servlet-api" )
20
20
optional(" junit:junit" )
21
- optional(" org.apache.httpcomponents:httpclient" ) {
22
- exclude(group : " commons-logging" , module : " commons-logging" )
23
- }
21
+ optional(" org.apache.httpcomponents.client5:httpclient5" )
24
22
optional(" org.assertj:assertj-core" )
25
23
optional(" org.hamcrest:hamcrest-core" )
26
24
optional(" org.hamcrest:hamcrest-library" )
Original file line number Diff line number Diff line change @@ -47,9 +47,6 @@ dependencies {
47
47
optional(" org.apache.commons:commons-dbcp2" ) {
48
48
exclude(group : " commons-logging" , module : " commons-logging" )
49
49
}
50
- optional(" org.apache.httpcomponents:httpclient" ) {
51
- exclude(group : " commons-logging" , module : " commons-logging" )
52
- }
53
50
optional(" org.apache.httpcomponents.client5:httpclient5" )
54
51
optional(" org.apache.logging.log4j:log4j-api" )
55
52
optional(" org.apache.logging.log4j:log4j-core" )
Original file line number Diff line number Diff line change @@ -25,9 +25,7 @@ dependencies {
25
25
systemTestImplementation(enforcedPlatform(project(path : " :spring-boot-project:spring-boot-parent" )))
26
26
systemTestImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
27
27
systemTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
28
- systemTestImplementation(" org.apache.httpcomponents:httpasyncclient" ) {
29
- exclude group : " commons-logging" , module : " commons-logging"
30
- }
28
+ systemTestImplementation(" org.apache.httpcomponents.client5:httpclient5" )
31
29
systemTestImplementation(" org.awaitility:awaitility" )
32
30
systemTestImplementation(" org.testcontainers:junit-jupiter" )
33
31
systemTestImplementation(" org.testcontainers:testcontainers" )
Original file line number Diff line number Diff line change @@ -13,9 +13,7 @@ configurations {
13
13
dependencies {
14
14
intTestImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
15
15
intTestImplementation(project(" :spring-boot-project:spring-boot-tools:spring-boot-test-support" ))
16
- intTestImplementation(" org.apache.httpcomponents:httpasyncclient" ) {
17
- exclude group : " commons-logging" , module : " commons-logging"
18
- }
16
+ intTestImplementation(" org.apache.httpcomponents.client5:httpclient5" )
19
17
intTestImplementation(" org.awaitility:awaitility" )
20
18
intTestImplementation(" org.springframework:spring-web" )
21
19
Original file line number Diff line number Diff line change @@ -13,7 +13,5 @@ dependencies {
13
13
14
14
testImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
15
15
16
- testRuntimeOnly(" org.apache.httpcomponents:httpclient" ) {
17
- exclude group : " commons-logging" , module : " commons-logging"
18
- }
16
+ testRuntimeOnly(" org.apache.httpcomponents.client5:httpclient5" )
19
17
}
Original file line number Diff line number Diff line change @@ -15,7 +15,5 @@ dependencies {
15
15
runtimeOnly(" com.h2database:h2" )
16
16
17
17
testImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
18
- testRuntimeOnly(" org.apache.httpcomponents:httpclient" ) {
19
- exclude group : " commons-logging" , module : " commons-logging"
20
- }
18
+ testRuntimeOnly(" org.apache.httpcomponents.client5:httpclient5" )
21
19
}
Original file line number Diff line number Diff line change @@ -13,7 +13,5 @@ dependencies {
13
13
14
14
testImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
15
15
16
- testRuntimeOnly(" org.apache.httpcomponents:httpclient" ) {
17
- exclude group : " commons-logging" , module : " commons-logging"
18
- }
16
+ testRuntimeOnly(" org.apache.httpcomponents.client5:httpclient5" )
19
17
}
Original file line number Diff line number Diff line change @@ -10,7 +10,5 @@ dependencies {
10
10
implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-web" ))
11
11
12
12
testImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
13
- testImplementation(" org.apache.httpcomponents:httpclient" ) {
14
- exclude group : " commons-logging" , module : " commons-logging"
15
- }
13
+ testImplementation(" org.apache.httpcomponents.client5:httpclient5" )
16
14
}
Original file line number Diff line number Diff line change @@ -11,7 +11,5 @@ dependencies {
11
11
implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-webflux" ))
12
12
13
13
testImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
14
- testImplementation(" org.apache.httpcomponents:httpclient" ) {
15
- exclude group : " commons-logging" , module : " commons-logging"
16
- }
14
+ testImplementation(" org.apache.httpcomponents.client5:httpclient5" )
17
15
}
Original file line number Diff line number Diff line change @@ -11,4 +11,5 @@ dependencies {
11
11
implementation(" org.springframework.security:spring-security-saml2-service-provider" )
12
12
13
13
testImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
14
+ testImplementation(" org.apache.httpcomponents.client5:httpclient5" )
14
15
}
Original file line number Diff line number Diff line change @@ -9,7 +9,5 @@ dependencies {
9
9
implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-web" ))
10
10
11
11
testImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
12
- testImplementation(" org.apache.httpcomponents:httpclient" ) {
13
- exclude group : " commons-logging" , module : " commons-logging"
14
- }
12
+ testImplementation(" org.apache.httpcomponents.client5:httpclient5" )
15
13
}
Original file line number Diff line number Diff line change @@ -9,7 +9,5 @@ dependencies {
9
9
implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-web" ))
10
10
11
11
testImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
12
- testImplementation(" org.apache.httpcomponents:httpclient" ) {
13
- exclude group : " commons-logging" , module : " commons-logging"
14
- }
12
+ testImplementation(" org.apache.httpcomponents.client5:httpclient5" )
15
13
}
Original file line number Diff line number Diff line change @@ -19,7 +19,5 @@ dependencies {
19
19
providedRuntime(" org.apache.tomcat.embed:tomcat-embed-jasper" )
20
20
21
21
testImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
22
- testImplementation(" org.apache.httpcomponents:httpclient" ) {
23
- exclude group : " commons-logging" , module : " commons-logging"
24
- }
22
+ testImplementation(" org.apache.httpcomponents.client5:httpclient5" )
25
23
}
Original file line number Diff line number Diff line change @@ -12,7 +12,5 @@ dependencies {
12
12
implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-undertow" ))
13
13
14
14
testImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
15
- testImplementation(" org.apache.httpcomponents:httpclient" ) {
16
- exclude group : " commons-logging" , module : " commons-logging"
17
- }
15
+ testImplementation(" org.apache.httpcomponents.client5:httpclient5" )
18
16
}
Original file line number Diff line number Diff line change @@ -10,7 +10,5 @@ dependencies {
10
10
implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-web" ))
11
11
12
12
testImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
13
- testImplementation(" org.apache.httpcomponents:httpclient" ) {
14
- exclude group : " commons-logging" , module : " commons-logging"
15
- }
13
+ testImplementation(" org.apache.httpcomponents.client5:httpclient5" )
16
14
}
Original file line number Diff line number Diff line change @@ -13,7 +13,5 @@ dependencies {
13
13
runtimeOnly(" com.h2database:h2" )
14
14
15
15
testImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
16
- testImplementation(" org.apache.httpcomponents:httpclient" ) {
17
- exclude group : " commons-logging" , module : " commons-logging"
18
- }
16
+ testImplementation(" org.apache.httpcomponents.client5:httpclient5" )
19
17
}
Original file line number Diff line number Diff line change @@ -10,7 +10,5 @@ dependencies {
10
10
implementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-web" ))
11
11
12
12
testImplementation(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter-test" ))
13
- testImplementation(" org.apache.httpcomponents:httpclient" ) {
14
- exclude group : " commons-logging" , module : " commons-logging"
15
- }
13
+ testImplementation(" org.apache.httpcomponents.client5:httpclient5" )
16
14
}
You can’t perform that action at this time.
0 commit comments