Update kotlin client dependencies to newer versions (#18211)

* update kotlin client dependencies to newer versoins

* update
This commit is contained in:
William Cheng
2024-03-23 21:21:20 +08:00
committed by GitHub
parent aedf571811
commit 4ca8f9c384
41 changed files with 193 additions and 166 deletions

View File

@@ -8,6 +8,7 @@ wrapper {
buildscript {
ext.kotlin_version = '1.8.10'
// 6.13.0 is the latest stable release that supports JDK8
ext.spotless_version = "6.13.0"
repositories {
@@ -55,8 +56,8 @@ test {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
implementation "com.squareup.moshi:moshi-adapters:1.14.0"
implementation "com.squareup.okhttp3:okhttp:4.11.0"
implementation "com.squareup.moshi:moshi-kotlin:1.15.1"
implementation "com.squareup.moshi:moshi-adapters:1.15.1"
implementation "com.squareup.okhttp3:okhttp:4.12.0"
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
}