Skip to content

Commit

Permalink
Adds okhttp dependency management.
Browse files Browse the repository at this point in the history
It was removed from spring-boot-dependencies in 3.4.0
  • Loading branch information
spencergibb committed Oct 23, 2024
1 parent 2f24c07 commit 5552385
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions spring-cloud-build-dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,21 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring-boot.version>3.4.0-SNAPSHOT</spring-boot.version>
<okhttp.version>4.12.0</okhttp.version>
<maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
</properties>
<dependencyManagement>
<dependencies>
<!-- removed from spring-boot-dependencies in 3.4.0 -->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp-bom</artifactId>
<version>${okhttp.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
Expand Down

0 comments on commit 5552385

Please sign in to comment.