File tree 3 files changed +26
-1
lines changed
spring-cloud-commons-dependencies
3 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 4
4
"@antora/atlas-extension" : " 1.0.0-alpha.2" ,
5
5
"@antora/collector-extension" : " 1.0.1" ,
6
6
"@asciidoctor/tabs" : " 1.0.0-beta.6" ,
7
- "@springio/antora-extensions" : " 1.14.2 " ,
7
+ "@springio/antora-extensions" : " 1.14.4 " ,
8
8
"@springio/asciidoctor-extensions" : " 1.0.0-alpha.16"
9
9
}
10
10
}
Original file line number Diff line number Diff line change 15
15
<name >spring-cloud-commons-dependencies</name >
16
16
<description >Spring Cloud Commons Dependencies</description >
17
17
<properties >
18
+ <okhttp .version>4.12.0</okhttp .version>
18
19
</properties >
19
20
<dependencyManagement >
20
21
<dependencies >
53
54
<artifactId >spring-cloud-test-support</artifactId >
54
55
<version >${project.version} </version >
55
56
</dependency >
57
+ <!-- Spring Boot removed its dependency management of okhttp in Spring Boot 3.4.0 -->
58
+ <!-- This resulted in a different version fo okhttp in Spring Cloud 2024.0.0 -->
59
+ <!-- We will now manage the version in Spring Cloud Commons to maintain backward compatibility -->
60
+ <!-- This can be removed in the next major -->
61
+ <dependency >
62
+ <groupId >com.squareup.okhttp3</groupId >
63
+ <artifactId >okhttp</artifactId >
64
+ <version >${okhttp.version} </version >
65
+ </dependency >
66
+ <dependency >
67
+ <groupId >com.squareup.okhttp3</groupId >
68
+ <artifactId >logging-interceptor</artifactId >
69
+ <version >${okhttp.version} </version >
70
+ </dependency >
56
71
</dependencies >
57
72
</dependencyManagement >
58
73
<profiles >
Original file line number Diff line number Diff line change 176
176
<artifactId >httpclient5</artifactId >
177
177
<optional >true</optional >
178
178
</dependency >
179
+ <dependency >
180
+ <groupId >com.squareup.okhttp3</groupId >
181
+ <artifactId >okhttp</artifactId >
182
+ <optional >true</optional >
183
+ </dependency >
184
+ <dependency >
185
+ <groupId >com.squareup.okhttp3</groupId >
186
+ <artifactId >logging-interceptor</artifactId >
187
+ <optional >true</optional >
188
+ </dependency >
179
189
<dependency >
180
190
<groupId >org.springframework.boot</groupId >
181
191
<artifactId >spring-boot-starter-test</artifactId >
You can’t perform that action at this time.
0 commit comments