Skip to content

Commit 5552385

Browse files
committed
Adds okhttp dependency management.
It was removed from spring-boot-dependencies in 3.4.0
1 parent 2f24c07 commit 5552385

File tree

1 file changed

+13
-0
lines changed
  • spring-cloud-build-dependencies

1 file changed

+13
-0
lines changed

spring-cloud-build-dependencies/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,21 @@
2020
<properties>
2121
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2222
<spring-boot.version>3.4.0-SNAPSHOT</spring-boot.version>
23+
<okhttp.version>4.12.0</okhttp.version>
2324
<maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
2425
</properties>
26+
<dependencyManagement>
27+
<dependencies>
28+
<!-- removed from spring-boot-dependencies in 3.4.0 -->
29+
<dependency>
30+
<groupId>com.squareup.okhttp3</groupId>
31+
<artifactId>okhttp-bom</artifactId>
32+
<version>${okhttp.version}</version>
33+
<type>pom</type>
34+
<scope>import</scope>
35+
</dependency>
36+
</dependencies>
37+
</dependencyManagement>
2538
<build>
2639
<plugins>
2740
<plugin>

0 commit comments

Comments
 (0)