forked from loafle/openapi-generator-original
[kotlin] Update kotlin to 1.7.21 and ktor to 2.1.3 (#14128)
This commit is contained in:
parent
d5ce79ac24
commit
e93906eaea
@ -20,7 +20,7 @@ For more information, please visit [{{{infoUrl}}}]({{{infoUrl}}})
|
|||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
{{#jvm}}
|
{{#jvm}}
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
{{/jvm}}
|
{{/jvm}}
|
||||||
{{#multiplatform}}
|
{{#multiplatform}}
|
||||||
|
@ -9,9 +9,9 @@ wrapper {
|
|||||||
{{/omitGradleWrapper}}
|
{{/omitGradleWrapper}}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
{{#jvm-ktor}}
|
{{#jvm-ktor}}
|
||||||
ext.ktor_version = '2.1.2'
|
ext.ktor_version = '2.1.3'
|
||||||
{{/jvm-ktor}}
|
{{/jvm-ktor}}
|
||||||
{{#jvm-retrofit2}}
|
{{#jvm-retrofit2}}
|
||||||
ext.retrofitVersion = '2.9.0'
|
ext.retrofitVersion = '2.9.0'
|
||||||
@ -75,7 +75,7 @@ dependencies {
|
|||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
{{^doNotUseRxAndCoroutines}}
|
{{^doNotUseRxAndCoroutines}}
|
||||||
{{#useCoroutines}}
|
{{#useCoroutines}}
|
||||||
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.3"
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4"
|
||||||
{{/useCoroutines}}
|
{{/useCoroutines}}
|
||||||
{{/doNotUseRxAndCoroutines}}
|
{{/doNotUseRxAndCoroutines}}
|
||||||
{{#moshi}}
|
{{#moshi}}
|
||||||
@ -99,7 +99,7 @@ dependencies {
|
|||||||
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3"
|
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3"
|
||||||
{{/jackson}}
|
{{/jackson}}
|
||||||
{{#kotlinx_serialization}}
|
{{#kotlinx_serialization}}
|
||||||
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.3"
|
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1"
|
||||||
{{/kotlinx_serialization}}
|
{{/kotlinx_serialization}}
|
||||||
{{#jvm-ktor}}
|
{{#jvm-ktor}}
|
||||||
implementation "io.ktor:ktor-client-core:$ktor_version"
|
implementation "io.ktor:ktor-client-core:$ktor_version"
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
|
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform"){{^omitGradlePluginVersions}} version "1.6.0" // kotlin_version{{/omitGradlePluginVersions}}
|
kotlin("multiplatform"){{^omitGradlePluginVersions}} version "1.7.21" // kotlin_version{{/omitGradlePluginVersions}}
|
||||||
kotlin("plugin.serialization"){{^omitGradlePluginVersions}} version "1.6.0" // kotlin_version{{/omitGradlePluginVersions}}
|
kotlin("plugin.serialization"){{^omitGradlePluginVersions}} version "1.7.21" // kotlin_version{{/omitGradlePluginVersions}}
|
||||||
}
|
}
|
||||||
|
|
||||||
group = "{{groupId}}"
|
group = "{{groupId}}"
|
||||||
version = "{{artifactVersion}}"
|
version = "{{artifactVersion}}"
|
||||||
|
|
||||||
val kotlin_version = "1.6.10"
|
val kotlin_version = "1.7.21"
|
||||||
val coroutines_version = "1.6.3"
|
val coroutines_version = "1.6.4"
|
||||||
val serialization_version = "1.3.3"
|
val serialization_version = "1.3.3"
|
||||||
val ktor_version = "2.0.3"
|
val ktor_version = "2.1.3"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
@ -76,7 +76,7 @@ kotlin {
|
|||||||
|
|
||||||
all {
|
all {
|
||||||
languageSettings.apply {
|
languageSettings.apply {
|
||||||
useExperimentalAnnotation("kotlin.Experimental")
|
optIn("kotlin.Experimental")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,7 @@ For more information, please visit [https://example.org](https://example.org)
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
|
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform") version "1.6.0" // kotlin_version
|
kotlin("multiplatform") version "1.7.21" // kotlin_version
|
||||||
kotlin("plugin.serialization") version "1.6.0" // kotlin_version
|
kotlin("plugin.serialization") version "1.7.21" // kotlin_version
|
||||||
}
|
}
|
||||||
|
|
||||||
group = "org.openapitools"
|
group = "org.openapitools"
|
||||||
version = "1.0.0"
|
version = "1.0.0"
|
||||||
|
|
||||||
val kotlin_version = "1.6.10"
|
val kotlin_version = "1.7.21"
|
||||||
val coroutines_version = "1.6.3"
|
val coroutines_version = "1.6.4"
|
||||||
val serialization_version = "1.3.3"
|
val serialization_version = "1.3.3"
|
||||||
val ktor_version = "2.0.3"
|
val ktor_version = "2.1.3"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
@ -76,7 +76,7 @@ kotlin {
|
|||||||
|
|
||||||
all {
|
all {
|
||||||
languageSettings.apply {
|
languageSettings.apply {
|
||||||
useExperimentalAnnotation("kotlin.Experimental")
|
optIn("kotlin.Experimental")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
|
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform") version "1.6.0" // kotlin_version
|
kotlin("multiplatform") version "1.7.21" // kotlin_version
|
||||||
kotlin("plugin.serialization") version "1.6.0" // kotlin_version
|
kotlin("plugin.serialization") version "1.7.21" // kotlin_version
|
||||||
}
|
}
|
||||||
|
|
||||||
group = "org.openapitools"
|
group = "org.openapitools"
|
||||||
version = "1.0.0"
|
version = "1.0.0"
|
||||||
|
|
||||||
val kotlin_version = "1.6.10"
|
val kotlin_version = "1.7.21"
|
||||||
val coroutines_version = "1.6.3"
|
val coroutines_version = "1.6.4"
|
||||||
val serialization_version = "1.3.3"
|
val serialization_version = "1.3.3"
|
||||||
val ktor_version = "2.0.3"
|
val ktor_version = "2.1.3"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
@ -76,7 +76,7 @@ kotlin {
|
|||||||
|
|
||||||
all {
|
all {
|
||||||
languageSettings.apply {
|
languageSettings.apply {
|
||||||
useExperimentalAnnotation("kotlin.Experimental")
|
optIn("kotlin.Experimental")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
ext.retrofitVersion = '2.9.0'
|
ext.retrofitVersion = '2.9.0'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
|
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform") version "1.6.0" // kotlin_version
|
kotlin("multiplatform") version "1.7.21" // kotlin_version
|
||||||
kotlin("plugin.serialization") version "1.6.0" // kotlin_version
|
kotlin("plugin.serialization") version "1.7.21" // kotlin_version
|
||||||
}
|
}
|
||||||
|
|
||||||
group = "org.openapitools"
|
group = "org.openapitools"
|
||||||
version = "1.0.0"
|
version = "1.0.0"
|
||||||
|
|
||||||
val kotlin_version = "1.6.10"
|
val kotlin_version = "1.7.21"
|
||||||
val coroutines_version = "1.6.3"
|
val coroutines_version = "1.6.4"
|
||||||
val serialization_version = "1.3.3"
|
val serialization_version = "1.3.3"
|
||||||
val ktor_version = "2.0.3"
|
val ktor_version = "2.1.3"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
@ -76,7 +76,7 @@ kotlin {
|
|||||||
|
|
||||||
all {
|
all {
|
||||||
languageSettings.apply {
|
languageSettings.apply {
|
||||||
useExperimentalAnnotation("kotlin.Experimental")
|
optIn("kotlin.Experimental")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -32,7 +32,7 @@ test {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.3"
|
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1"
|
||||||
implementation "com.squareup.okhttp3:okhttp:4.10.0"
|
implementation "com.squareup.okhttp3:okhttp:4.10.0"
|
||||||
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,8 +7,8 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
ext.ktor_version = '2.1.2'
|
ext.ktor_version = '2.1.3'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,8 +7,8 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
ext.ktor_version = '2.1.2'
|
ext.ktor_version = '2.1.3'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -29,7 +29,7 @@ test {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.3"
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4"
|
||||||
implementation "com.google.code.gson:gson:2.9.0"
|
implementation "com.google.code.gson:gson:2.9.0"
|
||||||
implementation "com.squareup.okhttp3:okhttp:4.10.0"
|
implementation "com.squareup.okhttp3:okhttp:4.10.0"
|
||||||
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
ext.vertx_version = "4.3.3"
|
ext.vertx_version = "4.3.3"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
ext.vertx_version = "4.3.3"
|
ext.vertx_version = "4.3.3"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
@ -30,7 +30,7 @@ test {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.3"
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$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.module:jackson-module-kotlin:2.13.3"
|
||||||
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3"
|
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3"
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
ext.vertx_version = "4.3.3"
|
ext.vertx_version = "4.3.3"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
ext.vertx_version = "4.3.3"
|
ext.vertx_version = "4.3.3"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
|
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform") version "1.6.0" // kotlin_version
|
kotlin("multiplatform") version "1.7.21" // kotlin_version
|
||||||
kotlin("plugin.serialization") version "1.6.0" // kotlin_version
|
kotlin("plugin.serialization") version "1.7.21" // kotlin_version
|
||||||
}
|
}
|
||||||
|
|
||||||
group = "org.openapitools"
|
group = "org.openapitools"
|
||||||
version = "1.0.0"
|
version = "1.0.0"
|
||||||
|
|
||||||
val kotlin_version = "1.6.10"
|
val kotlin_version = "1.7.21"
|
||||||
val coroutines_version = "1.6.3"
|
val coroutines_version = "1.6.4"
|
||||||
val serialization_version = "1.3.3"
|
val serialization_version = "1.3.3"
|
||||||
val ktor_version = "2.0.3"
|
val ktor_version = "2.1.3"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
@ -76,7 +76,7 @@ kotlin {
|
|||||||
|
|
||||||
all {
|
all {
|
||||||
languageSettings.apply {
|
languageSettings.apply {
|
||||||
useExperimentalAnnotation("kotlin.Experimental")
|
optIn("kotlin.Experimental")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
ext.retrofitVersion = '2.9.0'
|
ext.retrofitVersion = '2.9.0'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
@ -32,7 +32,7 @@ test {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.3"
|
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1"
|
||||||
implementation "org.apache.oltu.oauth2:org.apache.oltu.oauth2.client:1.0.2"
|
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.okhttp3:logging-interceptor:4.10.0"
|
||||||
implementation "com.squareup.retrofit2:retrofit:$retrofitVersion"
|
implementation "com.squareup.retrofit2:retrofit:$retrofitVersion"
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
ext.retrofitVersion = '2.9.0'
|
ext.retrofitVersion = '2.9.0'
|
||||||
ext.rxJava3Version = '3.0.12'
|
ext.rxJava3Version = '3.0.12'
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
ext.retrofitVersion = '2.9.0'
|
ext.retrofitVersion = '2.9.0'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -31,7 +31,7 @@ test {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.3"
|
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1"
|
||||||
implementation "com.squareup.okhttp3:okhttp:4.10.0"
|
implementation "com.squareup.okhttp3:okhttp:4.10.0"
|
||||||
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
|
|||||||
|
|
||||||
## Requires
|
## Requires
|
||||||
|
|
||||||
* Kotlin 1.6.10
|
* Kotlin 1.7.21
|
||||||
* Gradle 7.5
|
* Gradle 7.5
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.6.10'
|
ext.kotlin_version = '1.7.21'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user