Updated dependencies

This commit is contained in:
Erik C. Thauvin 2023-10-18 19:08:04 -07:00
parent b901d96b11
commit 886ed86479
3 changed files with 7 additions and 14 deletions

View file

@ -10,7 +10,7 @@ plugins {
id("java-library")
id("maven-publish")
id("net.thauvin.erik.gradle.semver") version "1.0.4"
id("org.jetbrains.dokka") version "1.9.0"
id("org.jetbrains.dokka") version "1.9.10"
id("org.jetbrains.kotlinx.kover") version "0.7.4"
id("org.sonarqube") version "4.4.1.3373"
id("signing")
@ -32,7 +32,7 @@ var semverProcessor = "net.thauvin.erik:semver:1.2.0"
val publicationName = "mavenJava"
object Versions {
const val OKHTTP = "4.11.0"
const val OKHTTP = "4.12.0"
}
fun isNonStable(version: String): Boolean {
@ -51,9 +51,8 @@ dependencies {
implementation(platform(kotlin("bom")))
implementation("com.squareup.okhttp3:okhttp:${Versions.OKHTTP}")
implementation("com.squareup.okio:okio:3.6.0")
implementation("com.squareup.okhttp3:logging-interceptor:${Versions.OKHTTP}")
implementation("org.json:json:20230618")
implementation("org.json:json:20231013")
testImplementation(kotlin("test"))
testImplementation(kotlin("test-junit"))

View file

@ -18,7 +18,7 @@ repositories {
dependencies {
implementation("net.thauvin.erik:bitly-shorten:1.0.0")
implementation("org.json:json:20230618")
implementation("org.json:json:20231013")
}
application {

12
pom.xml
View file

@ -56,25 +56,19 @@
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.11.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.squareup.okio</groupId>
<artifactId>okio-jvm</artifactId>
<version>3.6.0</version>
<version>4.12.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>logging-interceptor</artifactId>
<version>4.11.0</version>
<version>4.12.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20230618</version>
<version>20231013</version>
<scope>runtime</scope>
</dependency>
</dependencies>