Bump OkHttp to version 5.0.0

This commit is contained in:
Erik C. Thauvin 2025-07-04 16:57:53 -07:00
parent 73e36905a6
commit 705d89d7cd
Signed by: erik
GPG key ID: 776702A6A2DA330E
2 changed files with 5 additions and 5 deletions

View file

@ -35,14 +35,14 @@
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.12.0</version>
<artifactId>okhttp-jvm</artifactId>
<version>5.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>logging-interceptor</artifactId>
<version>4.12.0</version>
<version>5.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>

View file

@ -73,7 +73,7 @@ public class BitlyShortenBuild extends Project {
repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL);
var okHttp = version(4, 12, 0);
var okHttp = version(5, 0, 0);
final var kotlin = version(2, 2, 0);
scope(compile)
// Kotlin
@ -81,7 +81,7 @@ public class BitlyShortenBuild extends Project {
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib-common", kotlin))
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib-jdk8", kotlin))
// OkHttp
.include(dependency("com.squareup.okhttp3", "okhttp", okHttp))
.include(dependency("com.squareup.okhttp3", "okhttp-jvm", okHttp))
.include(dependency("com.squareup.okhttp3", "logging-interceptor", okHttp))
// JSON
.include(dependency("org.json", "json", "20250517"));