File tree Expand file tree Collapse file tree 3 files changed +26
-1
lines changed
spring-cloud-commons-dependencies Expand file tree Collapse file tree 3 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 44 "@antora/atlas-extension" : " 1.0.0-alpha.2" ,
55 "@antora/collector-extension" : " 1.0.1" ,
66 "@asciidoctor/tabs" : " 1.0.0-beta.6" ,
7- "@springio/antora-extensions" : " 1.14.2 " ,
7+ "@springio/antora-extensions" : " 1.14.4 " ,
88 "@springio/asciidoctor-extensions" : " 1.0.0-alpha.16"
99 }
1010}
Original file line number Diff line number Diff line change 1515 <name >spring-cloud-commons-dependencies</name >
1616 <description >Spring Cloud Commons Dependencies</description >
1717 <properties >
18+ <okhttp .version>4.12.0</okhttp .version>
1819 </properties >
1920 <dependencyManagement >
2021 <dependencies >
5354 <artifactId >spring-cloud-test-support</artifactId >
5455 <version >${project.version} </version >
5556 </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 >
5671 </dependencies >
5772 </dependencyManagement >
5873 <profiles >
Original file line number Diff line number Diff line change 176176 <artifactId >httpclient5</artifactId >
177177 <optional >true</optional >
178178 </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 >
179189 <dependency >
180190 <groupId >org.springframework.boot</groupId >
181191 <artifactId >spring-boot-starter-test</artifactId >
You can’t perform that action at this time.
0 commit comments