From 362b596fceb3fadac329c2d15e196e414cabbc8d Mon Sep 17 00:00:00 2001 From: William Cheng Date: Tue, 8 Aug 2023 10:06:08 +0800 Subject: [PATCH] update kotlin client dependencies (#16273) --- .../kotlin-client/build.gradle.mustache | 20 +++++++++---------- .../kotlin-allOff-discriminator/build.gradle | 8 ++++---- .../build.gradle | 6 +++--- .../build.gradle | 8 ++++---- .../build.gradle | 8 ++++---- .../build.gradle | 6 +++--- .../build.gradle | 8 ++++---- .../build.gradle | 6 +++--- .../kotlin-enum-default-value/build.gradle | 8 ++++---- .../client/petstore/kotlin-gson/build.gradle | 4 ++-- .../petstore/kotlin-jackson/build.gradle | 8 ++++---- .../kotlin-json-request-string/build.gradle | 4 ++-- .../kotlin-jvm-ktor-gson/build.gradle | 2 +- .../kotlin-jvm-ktor-jackson/build.gradle | 6 +++--- .../build.gradle | 2 +- .../build.gradle | 4 ++-- .../build.gradle | 6 +++--- .../build.gradle | 6 +++--- .../kotlin-jvm-vertx-gson/build.gradle | 2 +- .../build.gradle | 6 +++--- .../kotlin-jvm-vertx-jackson/build.gradle | 6 +++--- .../kotlin-jvm-vertx-moshi/build.gradle | 6 +++--- .../petstore/kotlin-modelMutable/build.gradle | 8 ++++---- .../kotlin-moshi-codegen/build.gradle | 10 +++++----- .../build.gradle | 8 ++++---- .../petstore/kotlin-nonpublic/build.gradle | 8 ++++---- .../petstore/kotlin-nullable/build.gradle | 8 ++++---- .../petstore/kotlin-okhttp3/build.gradle | 6 +++--- .../build.gradle | 2 +- .../kotlin-retrofit2-rx3/build.gradle | 6 +++--- .../petstore/kotlin-retrofit2/build.gradle | 6 +++--- .../petstore/kotlin-string/build.gradle | 8 ++++---- .../petstore/kotlin-threetenbp/build.gradle | 10 +++++----- .../kotlin-uppercase-enum/build.gradle | 4 ++-- samples/client/petstore/kotlin/build.gradle | 8 ++++---- 35 files changed, 116 insertions(+), 116 deletions(-) diff --git a/modules/openapi-generator/src/main/resources/kotlin-client/build.gradle.mustache b/modules/openapi-generator/src/main/resources/kotlin-client/build.gradle.mustache index ec99f699bb8..b863ab98bc3 100644 --- a/modules/openapi-generator/src/main/resources/kotlin-client/build.gradle.mustache +++ b/modules/openapi-generator/src/main/resources/kotlin-client/build.gradle.mustache @@ -9,7 +9,7 @@ wrapper { {{/omitGradleWrapper}} buildscript { - ext.kotlin_version = '1.7.21' + ext.kotlin_version = '1.8.10' {{#jvm-ktor}} ext.ktor_version = '2.1.3' {{/jvm-ktor}} @@ -99,13 +99,13 @@ dependencies { {{#moshi}} {{^moshiCodeGen}} 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.moshi:moshi-kotlin:1.14.0" + implementation "com.squareup.moshi:moshi-adapters:1.14.0" {{/moshiCodeGen}} {{#moshiCodeGen}} - implementation "com.squareup.moshi:moshi:1.13.0" - implementation "com.squareup.moshi:moshi-adapters:1.13.0" - kapt "com.squareup.moshi:moshi-kotlin-codegen:1.13.0" + implementation "com.squareup.moshi:moshi:1.14.0" + implementation "com.squareup.moshi:moshi-adapters:1.14.0" + kapt "com.squareup.moshi:moshi-kotlin-codegen:1.14.0" {{/moshiCodeGen}} {{/moshi}} {{#gson}} @@ -113,8 +113,8 @@ dependencies { {{/gson}} {{#jackson}} implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version" - implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.13.3" - implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3" + implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.14.3" + implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.3" {{/jackson}} {{#kotlinx_serialization}} implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1" @@ -135,14 +135,14 @@ dependencies { implementation "com.squareup.okhttp3:okhttp:3.12.13" {{/jvm-okhttp3}} {{#jvm-okhttp4}} - implementation "com.squareup.okhttp3:okhttp:4.10.0" + implementation "com.squareup.okhttp3:okhttp:4.11.0" {{/jvm-okhttp4}} {{#jvm-spring-webclient}} implementation "org.springframework.boot:spring-boot-starter-webflux:$spring_boot_version" implementation "io.projectreactor:reactor-core:$reactor_version" {{/jvm-spring-webclient}} {{#threetenbp}} - implementation "org.threeten:threetenbp:1.5.1" + implementation "org.threeten:threetenbp:1.6.8" {{/threetenbp}} {{#jvm-retrofit2}} {{#hasOAuthMethods}} diff --git a/samples/client/petstore/kotlin-allOff-discriminator/build.gradle b/samples/client/petstore/kotlin-allOff-discriminator/build.gradle index 66a3c68b890..da2286f5db4 100644 --- a/samples/client/petstore/kotlin-allOff-discriminator/build.gradle +++ b/samples/client/petstore/kotlin-allOff-discriminator/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" } diff --git a/samples/client/petstore/kotlin-array-simple-string-jvm-okhttp3/build.gradle b/samples/client/petstore/kotlin-array-simple-string-jvm-okhttp3/build.gradle index 3822ee114c7..fb6ed41cddf 100644 --- a/samples/client/petstore/kotlin-array-simple-string-jvm-okhttp3/build.gradle +++ b/samples/client/petstore/kotlin-array-simple-string-jvm-okhttp3/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.moshi:moshi-kotlin:1.14.0" + implementation "com.squareup.moshi:moshi-adapters:1.14.0" implementation "com.squareup.okhttp3:okhttp:3.12.13" testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2" } diff --git a/samples/client/petstore/kotlin-array-simple-string-jvm-okhttp4/build.gradle b/samples/client/petstore/kotlin-array-simple-string-jvm-okhttp4/build.gradle index 66a3c68b890..da2286f5db4 100644 --- a/samples/client/petstore/kotlin-array-simple-string-jvm-okhttp4/build.gradle +++ b/samples/client/petstore/kotlin-array-simple-string-jvm-okhttp4/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" } diff --git a/samples/client/petstore/kotlin-bigdecimal-default-okhttp4/build.gradle b/samples/client/petstore/kotlin-bigdecimal-default-okhttp4/build.gradle index 66a3c68b890..da2286f5db4 100644 --- a/samples/client/petstore/kotlin-bigdecimal-default-okhttp4/build.gradle +++ b/samples/client/petstore/kotlin-bigdecimal-default-okhttp4/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" } diff --git a/samples/client/petstore/kotlin-default-values-jvm-okhttp3/build.gradle b/samples/client/petstore/kotlin-default-values-jvm-okhttp3/build.gradle index 3822ee114c7..fb6ed41cddf 100644 --- a/samples/client/petstore/kotlin-default-values-jvm-okhttp3/build.gradle +++ b/samples/client/petstore/kotlin-default-values-jvm-okhttp3/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.moshi:moshi-kotlin:1.14.0" + implementation "com.squareup.moshi:moshi-adapters:1.14.0" implementation "com.squareup.okhttp3:okhttp:3.12.13" testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2" } diff --git a/samples/client/petstore/kotlin-default-values-jvm-okhttp4/build.gradle b/samples/client/petstore/kotlin-default-values-jvm-okhttp4/build.gradle index 66a3c68b890..da2286f5db4 100644 --- a/samples/client/petstore/kotlin-default-values-jvm-okhttp4/build.gradle +++ b/samples/client/petstore/kotlin-default-values-jvm-okhttp4/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" } diff --git a/samples/client/petstore/kotlin-default-values-jvm-retrofit2/build.gradle b/samples/client/petstore/kotlin-default-values-jvm-retrofit2/build.gradle index a72e41c6d37..be9c38498e5 100644 --- a/samples/client/petstore/kotlin-default-values-jvm-retrofit2/build.gradle +++ b/samples/client/petstore/kotlin-default-values-jvm-retrofit2/build.gradle @@ -7,7 +7,7 @@ wrapper { } buildscript { - ext.kotlin_version = '1.7.21' + ext.kotlin_version = '1.8.10' ext.retrofitVersion = '2.9.0' repositories { @@ -32,8 +32,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.moshi:moshi-kotlin:1.14.0" + implementation "com.squareup.moshi:moshi-adapters:1.14.0" implementation "com.squareup.okhttp3:logging-interceptor:4.10.0" implementation "com.squareup.retrofit2:retrofit:$retrofitVersion" implementation "com.squareup.retrofit2:converter-moshi:$retrofitVersion" diff --git a/samples/client/petstore/kotlin-enum-default-value/build.gradle b/samples/client/petstore/kotlin-enum-default-value/build.gradle index 66a3c68b890..da2286f5db4 100644 --- a/samples/client/petstore/kotlin-enum-default-value/build.gradle +++ b/samples/client/petstore/kotlin-enum-default-value/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" } diff --git a/samples/client/petstore/kotlin-gson/build.gradle b/samples/client/petstore/kotlin-gson/build.gradle index fb0b38ea342..f9c643efd5b 100644 --- a/samples/client/petstore/kotlin-gson/build.gradle +++ b/samples/client/petstore/kotlin-gson/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,6 +31,6 @@ test { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" implementation "com.google.code.gson:gson:2.9.0" - implementation "com.squareup.okhttp3:okhttp:4.10.0" + implementation "com.squareup.okhttp3:okhttp:4.11.0" testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2" } diff --git a/samples/client/petstore/kotlin-jackson/build.gradle b/samples/client/petstore/kotlin-jackson/build.gradle index 73ef0b01c56..2b6af9d0297 100644 --- a/samples/client/petstore/kotlin-jackson/build.gradle +++ b/samples/client/petstore/kotlin-jackson/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.fasterxml.jackson.module:jackson-module-kotlin:2.13.3" - implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3" - implementation "com.squareup.okhttp3:okhttp:4.10.0" + implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.14.3" + implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.3" + implementation "com.squareup.okhttp3:okhttp:4.11.0" testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2" } diff --git a/samples/client/petstore/kotlin-json-request-string/build.gradle b/samples/client/petstore/kotlin-json-request-string/build.gradle index 2e9236ca084..aaddcd6b2be 100644 --- a/samples/client/petstore/kotlin-json-request-string/build.gradle +++ b/samples/client/petstore/kotlin-json-request-string/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" } @@ -34,7 +34,7 @@ test { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1" - implementation "com.squareup.okhttp3:okhttp:4.10.0" + implementation "com.squareup.okhttp3:okhttp:4.11.0" testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2" } diff --git a/samples/client/petstore/kotlin-jvm-ktor-gson/build.gradle b/samples/client/petstore/kotlin-jvm-ktor-gson/build.gradle index ab8fa9dbf3e..c5b6848fd20 100644 --- a/samples/client/petstore/kotlin-jvm-ktor-gson/build.gradle +++ b/samples/client/petstore/kotlin-jvm-ktor-gson/build.gradle @@ -7,7 +7,7 @@ wrapper { } buildscript { - ext.kotlin_version = '1.7.21' + ext.kotlin_version = '1.8.10' ext.ktor_version = '2.1.3' repositories { diff --git a/samples/client/petstore/kotlin-jvm-ktor-jackson/build.gradle b/samples/client/petstore/kotlin-jvm-ktor-jackson/build.gradle index 63636d11ac5..c363bccd951 100644 --- a/samples/client/petstore/kotlin-jvm-ktor-jackson/build.gradle +++ b/samples/client/petstore/kotlin-jvm-ktor-jackson/build.gradle @@ -7,7 +7,7 @@ wrapper { } buildscript { - ext.kotlin_version = '1.7.21' + ext.kotlin_version = '1.8.10' ext.ktor_version = '2.1.3' repositories { @@ -32,8 +32,8 @@ test { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version" - implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.13.3" - implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3" + implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.14.3" + implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.3" implementation "io.ktor:ktor-client-core:$ktor_version" implementation "io.ktor:ktor-client-content-negotiation:$ktor_version" implementation "io.ktor:ktor-client-jackson:$ktor_version" diff --git a/samples/client/petstore/kotlin-jvm-ktor-kotlinx_serialization/build.gradle b/samples/client/petstore/kotlin-jvm-ktor-kotlinx_serialization/build.gradle index 76580542774..ae9db1a0e75 100644 --- a/samples/client/petstore/kotlin-jvm-ktor-kotlinx_serialization/build.gradle +++ b/samples/client/petstore/kotlin-jvm-ktor-kotlinx_serialization/build.gradle @@ -7,7 +7,7 @@ wrapper { } buildscript { - ext.kotlin_version = '1.7.21' + ext.kotlin_version = '1.8.10' ext.ktor_version = '2.1.3' repositories { diff --git a/samples/client/petstore/kotlin-jvm-okhttp4-coroutines/build.gradle b/samples/client/petstore/kotlin-jvm-okhttp4-coroutines/build.gradle index ff5712e4118..945679fc225 100644 --- a/samples/client/petstore/kotlin-jvm-okhttp4-coroutines/build.gradle +++ b/samples/client/petstore/kotlin-jvm-okhttp4-coroutines/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" } @@ -32,6 +32,6 @@ dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4" implementation "com.google.code.gson:gson:2.9.0" - implementation "com.squareup.okhttp3:okhttp:4.10.0" + implementation "com.squareup.okhttp3:okhttp:4.11.0" testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2" } diff --git a/samples/client/petstore/kotlin-jvm-spring-2-webclient/build.gradle b/samples/client/petstore/kotlin-jvm-spring-2-webclient/build.gradle index aef308f3a51..25e92ccf92a 100644 --- a/samples/client/petstore/kotlin-jvm-spring-2-webclient/build.gradle +++ b/samples/client/petstore/kotlin-jvm-spring-2-webclient/build.gradle @@ -7,7 +7,7 @@ wrapper { } buildscript { - ext.kotlin_version = '1.7.21' + ext.kotlin_version = '1.8.10' ext.spring_boot_version = "2.7.12" ext.reactor_version = "3.5.6" @@ -33,8 +33,8 @@ test { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version" - implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.13.3" - implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3" + implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.14.3" + implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.3" implementation "org.springframework.boot:spring-boot-starter-webflux:$spring_boot_version" implementation "io.projectreactor:reactor-core:$reactor_version" testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2" diff --git a/samples/client/petstore/kotlin-jvm-spring-3-webclient/build.gradle b/samples/client/petstore/kotlin-jvm-spring-3-webclient/build.gradle index e093faab766..50a422fd945 100644 --- a/samples/client/petstore/kotlin-jvm-spring-3-webclient/build.gradle +++ b/samples/client/petstore/kotlin-jvm-spring-3-webclient/build.gradle @@ -7,7 +7,7 @@ wrapper { } buildscript { - ext.kotlin_version = '1.7.21' + ext.kotlin_version = '1.8.10' ext.spring_boot_version = "3.1.0" ext.reactor_version = "3.5.6" @@ -39,8 +39,8 @@ kotlin { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version" - implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.13.3" - implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3" + implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.14.3" + implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.3" implementation "org.springframework.boot:spring-boot-starter-webflux:$spring_boot_version" implementation "io.projectreactor:reactor-core:$reactor_version" testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2" diff --git a/samples/client/petstore/kotlin-jvm-vertx-gson/build.gradle b/samples/client/petstore/kotlin-jvm-vertx-gson/build.gradle index 42898256f39..99d01076c26 100644 --- a/samples/client/petstore/kotlin-jvm-vertx-gson/build.gradle +++ b/samples/client/petstore/kotlin-jvm-vertx-gson/build.gradle @@ -7,7 +7,7 @@ wrapper { } buildscript { - ext.kotlin_version = '1.7.21' + ext.kotlin_version = '1.8.10' ext.vertx_version = "4.3.3" repositories { diff --git a/samples/client/petstore/kotlin-jvm-vertx-jackson-coroutines/build.gradle b/samples/client/petstore/kotlin-jvm-vertx-jackson-coroutines/build.gradle index a8f19fa280f..b1983802efc 100644 --- a/samples/client/petstore/kotlin-jvm-vertx-jackson-coroutines/build.gradle +++ b/samples/client/petstore/kotlin-jvm-vertx-jackson-coroutines/build.gradle @@ -7,7 +7,7 @@ wrapper { } buildscript { - ext.kotlin_version = '1.7.21' + ext.kotlin_version = '1.8.10' ext.vertx_version = "4.3.3" repositories { @@ -33,8 +33,8 @@ dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4" implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version" - implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.13.3" - implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3" + implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.14.3" + implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.3" testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2" implementation "io.vertx:vertx-web-client:$vertx_version" implementation "io.vertx:vertx-core:$vertx_version" diff --git a/samples/client/petstore/kotlin-jvm-vertx-jackson/build.gradle b/samples/client/petstore/kotlin-jvm-vertx-jackson/build.gradle index 4237826a4a6..f86910fe9de 100644 --- a/samples/client/petstore/kotlin-jvm-vertx-jackson/build.gradle +++ b/samples/client/petstore/kotlin-jvm-vertx-jackson/build.gradle @@ -7,7 +7,7 @@ wrapper { } buildscript { - ext.kotlin_version = '1.7.21' + ext.kotlin_version = '1.8.10' ext.vertx_version = "4.3.3" repositories { @@ -32,8 +32,8 @@ test { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version" - implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.13.3" - implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3" + implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.14.3" + implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.3" testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2" implementation "io.vertx:vertx-web-client:$vertx_version" implementation "io.vertx:vertx-core:$vertx_version" diff --git a/samples/client/petstore/kotlin-jvm-vertx-moshi/build.gradle b/samples/client/petstore/kotlin-jvm-vertx-moshi/build.gradle index af121477e73..ce4b5e69b33 100644 --- a/samples/client/petstore/kotlin-jvm-vertx-moshi/build.gradle +++ b/samples/client/petstore/kotlin-jvm-vertx-moshi/build.gradle @@ -7,7 +7,7 @@ wrapper { } buildscript { - ext.kotlin_version = '1.7.21' + ext.kotlin_version = '1.8.10' ext.vertx_version = "4.3.3" repositories { @@ -32,8 +32,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.moshi:moshi-kotlin:1.14.0" + implementation "com.squareup.moshi:moshi-adapters:1.14.0" testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2" implementation "io.vertx:vertx-web-client:$vertx_version" implementation "io.vertx:vertx-core:$vertx_version" diff --git a/samples/client/petstore/kotlin-modelMutable/build.gradle b/samples/client/petstore/kotlin-modelMutable/build.gradle index 66a3c68b890..da2286f5db4 100644 --- a/samples/client/petstore/kotlin-modelMutable/build.gradle +++ b/samples/client/petstore/kotlin-modelMutable/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" } diff --git a/samples/client/petstore/kotlin-moshi-codegen/build.gradle b/samples/client/petstore/kotlin-moshi-codegen/build.gradle index eb1a5adf890..e3a37382c2e 100644 --- a/samples/client/petstore/kotlin-moshi-codegen/build.gradle +++ b/samples/client/petstore/kotlin-moshi-codegen/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,9 +31,9 @@ test { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" - implementation "com.squareup.moshi:moshi:1.13.0" - implementation "com.squareup.moshi:moshi-adapters:1.13.0" - kapt "com.squareup.moshi:moshi-kotlin-codegen:1.13.0" - implementation "com.squareup.okhttp3:okhttp:4.10.0" + implementation "com.squareup.moshi:moshi:1.14.0" + implementation "com.squareup.moshi:moshi-adapters:1.14.0" + kapt "com.squareup.moshi:moshi-kotlin-codegen:1.14.0" + implementation "com.squareup.okhttp3:okhttp:4.11.0" testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2" } diff --git a/samples/client/petstore/kotlin-name-parameter-mappings/build.gradle b/samples/client/petstore/kotlin-name-parameter-mappings/build.gradle index 66a3c68b890..da2286f5db4 100644 --- a/samples/client/petstore/kotlin-name-parameter-mappings/build.gradle +++ b/samples/client/petstore/kotlin-name-parameter-mappings/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" } diff --git a/samples/client/petstore/kotlin-nonpublic/build.gradle b/samples/client/petstore/kotlin-nonpublic/build.gradle index 66a3c68b890..da2286f5db4 100644 --- a/samples/client/petstore/kotlin-nonpublic/build.gradle +++ b/samples/client/petstore/kotlin-nonpublic/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" } diff --git a/samples/client/petstore/kotlin-nullable/build.gradle b/samples/client/petstore/kotlin-nullable/build.gradle index 66a3c68b890..da2286f5db4 100644 --- a/samples/client/petstore/kotlin-nullable/build.gradle +++ b/samples/client/petstore/kotlin-nullable/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" } diff --git a/samples/client/petstore/kotlin-okhttp3/build.gradle b/samples/client/petstore/kotlin-okhttp3/build.gradle index 3822ee114c7..fb6ed41cddf 100644 --- a/samples/client/petstore/kotlin-okhttp3/build.gradle +++ b/samples/client/petstore/kotlin-okhttp3/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.moshi:moshi-kotlin:1.14.0" + implementation "com.squareup.moshi:moshi-adapters:1.14.0" implementation "com.squareup.okhttp3:okhttp:3.12.13" testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2" } diff --git a/samples/client/petstore/kotlin-retrofit2-kotlinx_serialization/build.gradle b/samples/client/petstore/kotlin-retrofit2-kotlinx_serialization/build.gradle index f712fe610ef..42af71594bc 100644 --- a/samples/client/petstore/kotlin-retrofit2-kotlinx_serialization/build.gradle +++ b/samples/client/petstore/kotlin-retrofit2-kotlinx_serialization/build.gradle @@ -7,7 +7,7 @@ wrapper { } buildscript { - ext.kotlin_version = '1.7.21' + ext.kotlin_version = '1.8.10' ext.retrofitVersion = '2.9.0' repositories { diff --git a/samples/client/petstore/kotlin-retrofit2-rx3/build.gradle b/samples/client/petstore/kotlin-retrofit2-rx3/build.gradle index e8c650bb091..dd7a1df263a 100644 --- a/samples/client/petstore/kotlin-retrofit2-rx3/build.gradle +++ b/samples/client/petstore/kotlin-retrofit2-rx3/build.gradle @@ -7,7 +7,7 @@ wrapper { } buildscript { - ext.kotlin_version = '1.7.21' + ext.kotlin_version = '1.8.10' ext.retrofitVersion = '2.9.0' ext.rxJava3Version = '3.0.12' @@ -33,8 +33,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.moshi:moshi-kotlin:1.14.0" + implementation "com.squareup.moshi:moshi-adapters:1.14.0" implementation "org.apache.oltu.oauth2:org.apache.oltu.oauth2.client:1.0.2" implementation "com.squareup.okhttp3:logging-interceptor:4.10.0" implementation "io.reactivex.rxjava3:rxjava:$rxJava3Version" diff --git a/samples/client/petstore/kotlin-retrofit2/build.gradle b/samples/client/petstore/kotlin-retrofit2/build.gradle index bcb7ea17cf8..bce04721bfe 100644 --- a/samples/client/petstore/kotlin-retrofit2/build.gradle +++ b/samples/client/petstore/kotlin-retrofit2/build.gradle @@ -7,7 +7,7 @@ wrapper { } buildscript { - ext.kotlin_version = '1.7.21' + ext.kotlin_version = '1.8.10' ext.retrofitVersion = '2.9.0' repositories { @@ -32,8 +32,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.moshi:moshi-kotlin:1.14.0" + implementation "com.squareup.moshi:moshi-adapters:1.14.0" implementation "org.apache.oltu.oauth2:org.apache.oltu.oauth2.client:1.0.2" implementation "com.squareup.okhttp3:logging-interceptor:4.10.0" implementation "com.squareup.retrofit2:retrofit:$retrofitVersion" diff --git a/samples/client/petstore/kotlin-string/build.gradle b/samples/client/petstore/kotlin-string/build.gradle index 66a3c68b890..da2286f5db4 100644 --- a/samples/client/petstore/kotlin-string/build.gradle +++ b/samples/client/petstore/kotlin-string/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" } diff --git a/samples/client/petstore/kotlin-threetenbp/build.gradle b/samples/client/petstore/kotlin-threetenbp/build.gradle index e0c1cb3746e..a7037fc3da8 100644 --- a/samples/client/petstore/kotlin-threetenbp/build.gradle +++ b/samples/client/petstore/kotlin-threetenbp/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,9 +31,9 @@ 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 "org.threeten:threetenbp:1.5.1" + 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 "org.threeten:threetenbp:1.6.8" testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2" } diff --git a/samples/client/petstore/kotlin-uppercase-enum/build.gradle b/samples/client/petstore/kotlin-uppercase-enum/build.gradle index c0b73efde8e..06ed9a687c7 100644 --- a/samples/client/petstore/kotlin-uppercase-enum/build.gradle +++ b/samples/client/petstore/kotlin-uppercase-enum/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" } @@ -33,7 +33,7 @@ test { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1" - implementation "com.squareup.okhttp3:okhttp:4.10.0" + implementation "com.squareup.okhttp3:okhttp:4.11.0" testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2" } diff --git a/samples/client/petstore/kotlin/build.gradle b/samples/client/petstore/kotlin/build.gradle index 66a3c68b890..da2286f5db4 100644 --- a/samples/client/petstore/kotlin/build.gradle +++ b/samples/client/petstore/kotlin/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" }