Bump OkHttp to version 5.0.0
This commit is contained in:
parent
73e36905a6
commit
705d89d7cd
2 changed files with 5 additions and 5 deletions
6
pom.xml
6
pom.xml
|
@ -35,14 +35,14 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.squareup.okhttp3</groupId>
|
<groupId>com.squareup.okhttp3</groupId>
|
||||||
<artifactId>okhttp</artifactId>
|
<artifactId>okhttp-jvm</artifactId>
|
||||||
<version>4.12.0</version>
|
<version>5.0.0</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.squareup.okhttp3</groupId>
|
<groupId>com.squareup.okhttp3</groupId>
|
||||||
<artifactId>logging-interceptor</artifactId>
|
<artifactId>logging-interceptor</artifactId>
|
||||||
<version>4.12.0</version>
|
<version>5.0.0</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -73,7 +73,7 @@ public class BitlyShortenBuild extends Project {
|
||||||
|
|
||||||
repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL);
|
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);
|
final var kotlin = version(2, 2, 0);
|
||||||
scope(compile)
|
scope(compile)
|
||||||
// Kotlin
|
// 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-common", kotlin))
|
||||||
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib-jdk8", kotlin))
|
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib-jdk8", kotlin))
|
||||||
// OkHttp
|
// OkHttp
|
||||||
.include(dependency("com.squareup.okhttp3", "okhttp", okHttp))
|
.include(dependency("com.squareup.okhttp3", "okhttp-jvm", okHttp))
|
||||||
.include(dependency("com.squareup.okhttp3", "logging-interceptor", okHttp))
|
.include(dependency("com.squareup.okhttp3", "logging-interceptor", okHttp))
|
||||||
// JSON
|
// JSON
|
||||||
.include(dependency("org.json", "json", "20250517"));
|
.include(dependency("org.json", "json", "20250517"));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue