forked from loafle/openapi-generator-original
update kotlin client dependencies (#16273)
This commit is contained in:
parent
29c5d6109a
commit
362b596fce
@ -9,7 +9,7 @@ wrapper {
|
|||||||
{{/omitGradleWrapper}}
|
{{/omitGradleWrapper}}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
{{#jvm-ktor}}
|
{{#jvm-ktor}}
|
||||||
ext.ktor_version = '2.1.3'
|
ext.ktor_version = '2.1.3'
|
||||||
{{/jvm-ktor}}
|
{{/jvm-ktor}}
|
||||||
@ -99,13 +99,13 @@ dependencies {
|
|||||||
{{#moshi}}
|
{{#moshi}}
|
||||||
{{^moshiCodeGen}}
|
{{^moshiCodeGen}}
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.0"
|
||||||
{{/moshiCodeGen}}
|
{{/moshiCodeGen}}
|
||||||
{{#moshiCodeGen}}
|
{{#moshiCodeGen}}
|
||||||
implementation "com.squareup.moshi:moshi:1.13.0"
|
implementation "com.squareup.moshi:moshi:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.0"
|
||||||
kapt "com.squareup.moshi:moshi-kotlin-codegen:1.13.0"
|
kapt "com.squareup.moshi:moshi-kotlin-codegen:1.14.0"
|
||||||
{{/moshiCodeGen}}
|
{{/moshiCodeGen}}
|
||||||
{{/moshi}}
|
{{/moshi}}
|
||||||
{{#gson}}
|
{{#gson}}
|
||||||
@ -113,8 +113,8 @@ dependencies {
|
|||||||
{{/gson}}
|
{{/gson}}
|
||||||
{{#jackson}}
|
{{#jackson}}
|
||||||
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.14.3"
|
||||||
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3"
|
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.3"
|
||||||
{{/jackson}}
|
{{/jackson}}
|
||||||
{{#kotlinx_serialization}}
|
{{#kotlinx_serialization}}
|
||||||
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1"
|
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1"
|
||||||
@ -135,14 +135,14 @@ dependencies {
|
|||||||
implementation "com.squareup.okhttp3:okhttp:3.12.13"
|
implementation "com.squareup.okhttp3:okhttp:3.12.13"
|
||||||
{{/jvm-okhttp3}}
|
{{/jvm-okhttp3}}
|
||||||
{{#jvm-okhttp4}}
|
{{#jvm-okhttp4}}
|
||||||
implementation "com.squareup.okhttp3:okhttp:4.10.0"
|
implementation "com.squareup.okhttp3:okhttp:4.11.0"
|
||||||
{{/jvm-okhttp4}}
|
{{/jvm-okhttp4}}
|
||||||
{{#jvm-spring-webclient}}
|
{{#jvm-spring-webclient}}
|
||||||
implementation "org.springframework.boot:spring-boot-starter-webflux:$spring_boot_version"
|
implementation "org.springframework.boot:spring-boot-starter-webflux:$spring_boot_version"
|
||||||
implementation "io.projectreactor:reactor-core:$reactor_version"
|
implementation "io.projectreactor:reactor-core:$reactor_version"
|
||||||
{{/jvm-spring-webclient}}
|
{{/jvm-spring-webclient}}
|
||||||
{{#threetenbp}}
|
{{#threetenbp}}
|
||||||
implementation "org.threeten:threetenbp:1.5.1"
|
implementation "org.threeten:threetenbp:1.6.8"
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
{{#jvm-retrofit2}}
|
{{#jvm-retrofit2}}
|
||||||
{{#hasOAuthMethods}}
|
{{#hasOAuthMethods}}
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -31,8 +31,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.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"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -31,8 +31,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.0"
|
||||||
implementation "com.squareup.okhttp3:okhttp:3.12.13"
|
implementation "com.squareup.okhttp3:okhttp:3.12.13"
|
||||||
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -31,8 +31,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.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"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -31,8 +31,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.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"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -31,8 +31,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.0"
|
||||||
implementation "com.squareup.okhttp3:okhttp:3.12.13"
|
implementation "com.squareup.okhttp3:okhttp:3.12.13"
|
||||||
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -31,8 +31,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.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"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
ext.retrofitVersion = '2.9.0'
|
ext.retrofitVersion = '2.9.0'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
@ -32,8 +32,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.0"
|
||||||
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"
|
||||||
implementation "com.squareup.retrofit2:converter-moshi:$retrofitVersion"
|
implementation "com.squareup.retrofit2:converter-moshi:$retrofitVersion"
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -31,8 +31,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.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"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -31,6 +31,6 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
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.11.0"
|
||||||
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -31,8 +31,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
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.14.3"
|
||||||
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3"
|
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.3"
|
||||||
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"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -34,7 +34,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.4.1"
|
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"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
ext.ktor_version = '2.1.3'
|
ext.ktor_version = '2.1.3'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
ext.ktor_version = '2.1.3'
|
ext.ktor_version = '2.1.3'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
@ -32,8 +32,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
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.14.3"
|
||||||
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.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-core:$ktor_version"
|
||||||
implementation "io.ktor:ktor-client-content-negotiation:$ktor_version"
|
implementation "io.ktor:ktor-client-content-negotiation:$ktor_version"
|
||||||
implementation "io.ktor:ktor-client-jackson:$ktor_version"
|
implementation "io.ktor:ktor-client-jackson:$ktor_version"
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
ext.ktor_version = '2.1.3'
|
ext.ktor_version = '2.1.3'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -32,6 +32,6 @@ 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.4"
|
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.11.0"
|
||||||
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
ext.spring_boot_version = "2.7.12"
|
ext.spring_boot_version = "2.7.12"
|
||||||
ext.reactor_version = "3.5.6"
|
ext.reactor_version = "3.5.6"
|
||||||
|
|
||||||
@ -33,8 +33,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
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.14.3"
|
||||||
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3"
|
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.3"
|
||||||
implementation "org.springframework.boot:spring-boot-starter-webflux:$spring_boot_version"
|
implementation "org.springframework.boot:spring-boot-starter-webflux:$spring_boot_version"
|
||||||
implementation "io.projectreactor:reactor-core:$reactor_version"
|
implementation "io.projectreactor:reactor-core:$reactor_version"
|
||||||
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
ext.spring_boot_version = "3.1.0"
|
ext.spring_boot_version = "3.1.0"
|
||||||
ext.reactor_version = "3.5.6"
|
ext.reactor_version = "3.5.6"
|
||||||
|
|
||||||
@ -39,8 +39,8 @@ kotlin {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
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.14.3"
|
||||||
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3"
|
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.3"
|
||||||
implementation "org.springframework.boot:spring-boot-starter-webflux:$spring_boot_version"
|
implementation "org.springframework.boot:spring-boot-starter-webflux:$spring_boot_version"
|
||||||
implementation "io.projectreactor:reactor-core:$reactor_version"
|
implementation "io.projectreactor:reactor-core:$reactor_version"
|
||||||
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
ext.vertx_version = "4.3.3"
|
ext.vertx_version = "4.3.3"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
ext.vertx_version = "4.3.3"
|
ext.vertx_version = "4.3.3"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
@ -33,8 +33,8 @@ 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.4"
|
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.14.3"
|
||||||
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3"
|
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.3"
|
||||||
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
implementation "io.vertx:vertx-web-client:$vertx_version"
|
implementation "io.vertx:vertx-web-client:$vertx_version"
|
||||||
implementation "io.vertx:vertx-core:$vertx_version"
|
implementation "io.vertx:vertx-core:$vertx_version"
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
ext.vertx_version = "4.3.3"
|
ext.vertx_version = "4.3.3"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
@ -32,8 +32,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
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.14.3"
|
||||||
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3"
|
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.3"
|
||||||
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
implementation "io.vertx:vertx-web-client:$vertx_version"
|
implementation "io.vertx:vertx-web-client:$vertx_version"
|
||||||
implementation "io.vertx:vertx-core:$vertx_version"
|
implementation "io.vertx:vertx-core:$vertx_version"
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
ext.vertx_version = "4.3.3"
|
ext.vertx_version = "4.3.3"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
@ -32,8 +32,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.0"
|
||||||
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
implementation "io.vertx:vertx-web-client:$vertx_version"
|
implementation "io.vertx:vertx-web-client:$vertx_version"
|
||||||
implementation "io.vertx:vertx-core:$vertx_version"
|
implementation "io.vertx:vertx-core:$vertx_version"
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -31,8 +31,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.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"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -31,9 +31,9 @@ test {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi:1.13.0"
|
implementation "com.squareup.moshi:moshi:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.0"
|
||||||
kapt "com.squareup.moshi:moshi-kotlin-codegen:1.13.0"
|
kapt "com.squareup.moshi:moshi-kotlin-codegen:1.14.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"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -31,8 +31,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.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"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -31,8 +31,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.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"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -31,8 +31,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.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"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -31,8 +31,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.0"
|
||||||
implementation "com.squareup.okhttp3:okhttp:3.12.13"
|
implementation "com.squareup.okhttp3:okhttp:3.12.13"
|
||||||
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
ext.retrofitVersion = '2.9.0'
|
ext.retrofitVersion = '2.9.0'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
ext.retrofitVersion = '2.9.0'
|
ext.retrofitVersion = '2.9.0'
|
||||||
ext.rxJava3Version = '3.0.12'
|
ext.rxJava3Version = '3.0.12'
|
||||||
|
|
||||||
@ -33,8 +33,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.0"
|
||||||
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 "io.reactivex.rxjava3:rxjava:$rxJava3Version"
|
implementation "io.reactivex.rxjava3:rxjava:$rxJava3Version"
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
ext.retrofitVersion = '2.9.0'
|
ext.retrofitVersion = '2.9.0'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
@ -32,8 +32,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.0"
|
||||||
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"
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -31,8 +31,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.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"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -31,9 +31,9 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.0"
|
||||||
implementation "com.squareup.okhttp3:okhttp:4.10.0"
|
implementation "com.squareup.okhttp3:okhttp:4.11.0"
|
||||||
implementation "org.threeten:threetenbp:1.5.1"
|
implementation "org.threeten:threetenbp:1.6.8"
|
||||||
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -33,7 +33,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.4.1"
|
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"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ wrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.7.21'
|
ext.kotlin_version = '1.8.10'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://repo1.maven.org/maven2" }
|
maven { url "https://repo1.maven.org/maven2" }
|
||||||
@ -31,8 +31,8 @@ test {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
|
||||||
implementation "com.squareup.moshi:moshi-adapters:1.13.0"
|
implementation "com.squareup.moshi:moshi-adapters:1.14.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"
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user