From c377a11c57d5028ae901e1e5a28e73e257c4ea69 Mon Sep 17 00:00:00 2001 From: William Cheng Date: Tue, 8 Aug 2023 14:57:53 +0800 Subject: [PATCH] update samples --- .../others/kotlin-jvm-okhttp-parameter-tests/build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/samples/client/others/kotlin-jvm-okhttp-parameter-tests/build.gradle b/samples/client/others/kotlin-jvm-okhttp-parameter-tests/build.gradle index 66a3c68b890..da2286f5db4 100644 --- a/samples/client/others/kotlin-jvm-okhttp-parameter-tests/build.gradle +++ b/samples/client/others/kotlin-jvm-okhttp-parameter-tests/build.gradle @@ -7,7 +7,7 @@ wrapper { } buildscript { - ext.kotlin_version = '1.7.21' + ext.kotlin_version = '1.8.10' repositories { maven { url "https://repo1.maven.org/maven2" } @@ -31,8 +31,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.13.0" - implementation "com.squareup.moshi:moshi-adapters:1.13.0" - implementation "com.squareup.okhttp3:okhttp:4.10.0" + 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" testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2" }