diff --git a/chat/build.gradle b/chat/build.gradle index bedd98f2..d17a6a66 100644 --- a/chat/build.gradle +++ b/chat/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.22" + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10" } } @@ -33,14 +33,14 @@ kotlin { sourceSets.each { it.dependencies { - implementation(project.dependencies.enforcedPlatform("io.ktor:ktor-bom:2.3.4")) + implementation(project.dependencies.enforcedPlatform("io.ktor:ktor-bom:2.3.5")) } } sourceSets { backendMain { dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.20" + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10" implementation "io.ktor:ktor-server-netty" implementation "io.ktor:ktor-server-websockets" implementation "io.ktor:ktor-server-call-logging" diff --git a/client-mpp/build.gradle b/client-mpp/build.gradle index 47c2653a..efbf109e 100644 --- a/client-mpp/build.gradle +++ b/client-mpp/build.gradle @@ -5,7 +5,7 @@ buildscript { gradlePluginPortal() } dependencies { - classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20") + classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10") classpath("com.android.tools.build:gradle:7.0.4") } } diff --git a/client-mpp/shared/build.gradle b/client-mpp/shared/build.gradle index 0109fc2a..5c541f73 100644 --- a/client-mpp/shared/build.gradle +++ b/client-mpp/shared/build.gradle @@ -19,7 +19,7 @@ kotlin { sourceSets.each { it.dependencies { - implementation(project.dependencies.enforcedPlatform("io.ktor:ktor-bom:2.3.4")) + implementation(project.dependencies.enforcedPlatform("io.ktor:ktor-bom:2.3.5")) } } diff --git a/client-multipart/build.gradle b/client-multipart/build.gradle index c8d60a86..a389e0ba 100644 --- a/client-multipart/build.gradle +++ b/client-multipart/build.gradle @@ -4,8 +4,8 @@ buildscript { gradlePluginPortal() } dependencies { - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20" - classpath "io.ktor.plugin:plugin:2.3.4" + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10" + classpath "io.ktor.plugin:plugin:2.3.5" } } @@ -27,7 +27,7 @@ repositories { } dependencies { - implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.20' + implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10' implementation "io.ktor:ktor-server-html-builder" implementation 'ch.qos.logback:logback-classic:1.4.6' implementation 'io.ktor:ktor-server-netty-jvm' diff --git a/client-tools/build.gradle b/client-tools/build.gradle index 170ee101..5bf0a75b 100644 --- a/client-tools/build.gradle +++ b/client-tools/build.gradle @@ -4,8 +4,8 @@ buildscript { gradlePluginPortal() } dependencies { - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20" - classpath "io.ktor.plugin:plugin:2.3.4" + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10" + classpath "io.ktor.plugin:plugin:2.3.5" } } @@ -27,7 +27,7 @@ repositories { } dependencies { - implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.20' + implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10' implementation "io.ktor:ktor-server-html-builder" implementation 'ch.qos.logback:logback-classic:1.4.6' implementation 'io.ktor:ktor-server-netty-jvm' diff --git a/di-kodein/build.gradle.kts b/di-kodein/build.gradle.kts index 97374b82..a4e00d2f 100644 --- a/di-kodein/build.gradle.kts +++ b/di-kodein/build.gradle.kts @@ -2,9 +2,9 @@ val kotlin_version: String by project val logback_version: String by project plugins { - kotlin("jvm") version "1.8.22" - id("io.ktor.plugin") version "2.3.4" - kotlin("plugin.serialization") version "1.8.22" + kotlin("jvm") version "1.9.10" + id("io.ktor.plugin") version "2.3.5" + kotlin("plugin.serialization") version "1.9.10" } application { diff --git a/di-kodein/gradle.properties b/di-kodein/gradle.properties index 43d1baaf..8151c200 100644 --- a/di-kodein/gradle.properties +++ b/di-kodein/gradle.properties @@ -1,3 +1,3 @@ -kotlin_version=1.8.22 +kotlin_version=1.9.10 logback_version=1.2.11 kotlin.code.style=official diff --git a/filelisting/build.gradle.kts b/filelisting/build.gradle.kts index 26b6ee62..6093c6dc 100644 --- a/filelisting/build.gradle.kts +++ b/filelisting/build.gradle.kts @@ -2,8 +2,8 @@ val kotlin_version: String by project val logback_version: String by project plugins { - kotlin("jvm") version "1.8.22" - id("io.ktor.plugin") version "2.3.4" + kotlin("jvm") version "1.9.10" + id("io.ktor.plugin") version "2.3.5" } application { diff --git a/filelisting/gradle.properties b/filelisting/gradle.properties index 43d1baaf..8151c200 100644 --- a/filelisting/gradle.properties +++ b/filelisting/gradle.properties @@ -1,3 +1,3 @@ -kotlin_version=1.8.22 +kotlin_version=1.9.10 logback_version=1.2.11 kotlin.code.style=official diff --git a/fullstack-mpp/build.gradle b/fullstack-mpp/build.gradle index 231b1784..8901aae3 100644 --- a/fullstack-mpp/build.gradle +++ b/fullstack-mpp/build.gradle @@ -6,7 +6,7 @@ buildscript { } dependencies { - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.22" + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10" } } @@ -29,7 +29,7 @@ kotlin { sourceSets.each { it.dependencies { - implementation(project.dependencies.enforcedPlatform("io.ktor:ktor-bom:2.3.4")) + implementation(project.dependencies.enforcedPlatform("io.ktor:ktor-bom:2.3.5")) } } diff --git a/graalvm/build.gradle.kts b/graalvm/build.gradle.kts index b9337685..6e1446e9 100644 --- a/graalvm/build.gradle.kts +++ b/graalvm/build.gradle.kts @@ -1,7 +1,7 @@ plugins { application - kotlin("jvm") version "1.7.20" - id("io.ktor.plugin") version "2.3.4" + kotlin("jvm") version "1.9.10" + id("io.ktor.plugin") version "2.3.5" id("org.graalvm.buildtools.native") version "0.9.19" } diff --git a/h2/build.gradle.kts b/h2/build.gradle.kts index 78cd70da..166d8720 100644 --- a/h2/build.gradle.kts +++ b/h2/build.gradle.kts @@ -3,8 +3,8 @@ val logback_version: String by project plugins { application - kotlin("jvm") version "1.7.20" - id("io.ktor.plugin") version "2.3.4" + kotlin("jvm") version "1.9.10" + id("io.ktor.plugin") version "2.3.5" } group = "io.ktor.samples" diff --git a/h2/gradle.properties b/h2/gradle.properties index 2883d053..8151c200 100644 --- a/h2/gradle.properties +++ b/h2/gradle.properties @@ -1,3 +1,3 @@ -kotlin_version=1.7.20 +kotlin_version=1.9.10 logback_version=1.2.11 kotlin.code.style=official diff --git a/httpbin/build.gradle.kts b/httpbin/build.gradle.kts index ea5a47a4..831f561c 100644 --- a/httpbin/build.gradle.kts +++ b/httpbin/build.gradle.kts @@ -2,8 +2,8 @@ val kotlin_version: String by project val logback_version: String by project plugins { - kotlin("jvm") version "1.8.22" - id("io.ktor.plugin") version "2.3.4" + kotlin("jvm") version "1.9.10" + id("io.ktor.plugin") version "2.3.5" } application { diff --git a/httpbin/gradle.properties b/httpbin/gradle.properties index 9e97abd7..309d6b39 100644 --- a/httpbin/gradle.properties +++ b/httpbin/gradle.properties @@ -1,4 +1,4 @@ -kotlin_version=1.8.22 +kotlin_version=1.9.10 logback_version=1.2.11 kotlin.code.style=official diff --git a/jwt-auth-tests/build.gradle.kts b/jwt-auth-tests/build.gradle.kts index 6b384fb5..3c3ee5fe 100644 --- a/jwt-auth-tests/build.gradle.kts +++ b/jwt-auth-tests/build.gradle.kts @@ -1,7 +1,7 @@ plugins { - kotlin("jvm") version "1.8.22" - kotlin("plugin.serialization") version "1.8.22" - id("io.ktor.plugin") version "2.3.4" + kotlin("jvm") version "1.9.10" + kotlin("plugin.serialization") version "1.9.10" + id("io.ktor.plugin") version "2.3.5" } application { diff --git a/kweet/build.gradle.kts b/kweet/build.gradle.kts index b559f58a..013e81c4 100644 --- a/kweet/build.gradle.kts +++ b/kweet/build.gradle.kts @@ -3,9 +3,9 @@ val logback_version: String by project val exposed_version: String by project plugins { - kotlin("jvm") version "1.8.22" - id("io.ktor.plugin") version "2.3.4" - kotlin("plugin.serialization") version "1.8.22" + kotlin("jvm") version "1.9.10" + id("io.ktor.plugin") version "2.3.5" + kotlin("plugin.serialization") version "1.9.10" } application { diff --git a/kweet/gradle.properties b/kweet/gradle.properties index e3f4faf0..274725b3 100644 --- a/kweet/gradle.properties +++ b/kweet/gradle.properties @@ -1,4 +1,4 @@ -kotlin_version=1.8.22 +kotlin_version=1.9.10 logback_version=1.2.11 exposed_version=0.40.1 kotlin.code.style=official diff --git a/location-header/build.gradle.kts b/location-header/build.gradle.kts index 9b854cb4..22293743 100644 --- a/location-header/build.gradle.kts +++ b/location-header/build.gradle.kts @@ -2,8 +2,8 @@ val kotlin_version: String by project val logback_version: String by project plugins { - kotlin("jvm") version "1.8.22" - id("io.ktor.plugin") version "2.3.4" + kotlin("jvm") version "1.9.10" + id("io.ktor.plugin") version "2.3.5" } application { diff --git a/location-header/gradle.properties b/location-header/gradle.properties index 43d1baaf..8151c200 100644 --- a/location-header/gradle.properties +++ b/location-header/gradle.properties @@ -1,3 +1,3 @@ -kotlin_version=1.8.22 +kotlin_version=1.9.10 logback_version=1.2.11 kotlin.code.style=official diff --git a/maven-google-appengine-standard/pom.xml b/maven-google-appengine-standard/pom.xml index c05041e7..344fbd32 100644 --- a/maven-google-appengine-standard/pom.xml +++ b/maven-google-appengine-standard/pom.xml @@ -11,7 +11,7 @@ maven-google-appengine-standard - 1.7.20 + 1.9.10 1.7.36 2.0.12 4.0.1 @@ -37,7 +37,7 @@ io.ktor ktor-bom - 2.3.4 + 2.3.5 pom import diff --git a/mongodb/build.gradle.kts b/mongodb/build.gradle.kts index 162d6527..cd085be8 100644 --- a/mongodb/build.gradle.kts +++ b/mongodb/build.gradle.kts @@ -3,9 +3,9 @@ val logback_version: String by project val mongodb_version: String by project plugins { - kotlin("jvm") version "1.8.22" - id("io.ktor.plugin") version "2.3.4" - id("org.jetbrains.kotlin.plugin.serialization") version "1.8.22" + kotlin("jvm") version "1.9.10" + id("io.ktor.plugin") version "2.3.5" + id("org.jetbrains.kotlin.plugin.serialization") version "1.9.10" } group = "com.example" @@ -32,7 +32,7 @@ dependencies { implementation("org.litote.kmongo:kmongo:$mongodb_version") testImplementation("io.ktor:ktor-server-tests-jvm") testImplementation("org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version") - testImplementation("io.ktor:ktor-server-test-host-jvm:2.3.4") + testImplementation("io.ktor:ktor-server-test-host-jvm:2.3.5") } tasks.register("databaseInstance") { diff --git a/mongodb/gradle.properties b/mongodb/gradle.properties index 043c80d5..2d9013e9 100644 --- a/mongodb/gradle.properties +++ b/mongodb/gradle.properties @@ -1,4 +1,4 @@ -kotlin_version=1.8.22 +kotlin_version=1.9.10 logback_version=1.2.11 mongodb_version=4.8.0 kotlin.code.style=official diff --git a/postgres/build.gradle.kts b/postgres/build.gradle.kts index 3dad7111..a4cdee73 100644 --- a/postgres/build.gradle.kts +++ b/postgres/build.gradle.kts @@ -2,9 +2,9 @@ val kotlin_version: String by project val logback_version: String by project plugins { - kotlin("jvm") version "1.8.22" + kotlin("jvm") version "1.9.10" id("io.ktor.plugin") version "2.2.3" - id("org.jetbrains.kotlin.plugin.serialization") version "1.8.22" + id("org.jetbrains.kotlin.plugin.serialization") version "1.9.10" } group = "com.example" diff --git a/postgres/gradle.properties b/postgres/gradle.properties index 43d1baaf..8151c200 100644 --- a/postgres/gradle.properties +++ b/postgres/gradle.properties @@ -1,3 +1,3 @@ -kotlin_version=1.8.22 +kotlin_version=1.9.10 logback_version=1.2.11 kotlin.code.style=official diff --git a/redirect-with-exception/build.gradle.kts b/redirect-with-exception/build.gradle.kts index 2d4374ac..b2dc67cd 100644 --- a/redirect-with-exception/build.gradle.kts +++ b/redirect-with-exception/build.gradle.kts @@ -2,8 +2,8 @@ val kotlin_version: String by project val logback_version: String by project plugins { - kotlin("jvm") version "1.8.22" - id("io.ktor.plugin") version "2.3.4" + kotlin("jvm") version "1.9.10" + id("io.ktor.plugin") version "2.3.5" } application { diff --git a/redirect-with-exception/gradle.properties b/redirect-with-exception/gradle.properties index 43d1baaf..8151c200 100644 --- a/redirect-with-exception/gradle.properties +++ b/redirect-with-exception/gradle.properties @@ -1,3 +1,3 @@ -kotlin_version=1.8.22 +kotlin_version=1.9.10 logback_version=1.2.11 kotlin.code.style=official diff --git a/reverse-proxy-ws/build.gradle.kts b/reverse-proxy-ws/build.gradle.kts index 6e580260..6d38e134 100644 --- a/reverse-proxy-ws/build.gradle.kts +++ b/reverse-proxy-ws/build.gradle.kts @@ -2,8 +2,8 @@ val kotlin_version: String by project val logback_version: String by project plugins { - kotlin("jvm") version "1.8.22" - id("io.ktor.plugin") version "2.3.4" + kotlin("jvm") version "1.9.10" + id("io.ktor.plugin") version "2.3.5" } application { diff --git a/reverse-proxy-ws/gradle.properties b/reverse-proxy-ws/gradle.properties index 43d1baaf..8151c200 100644 --- a/reverse-proxy-ws/gradle.properties +++ b/reverse-proxy-ws/gradle.properties @@ -1,3 +1,3 @@ -kotlin_version=1.8.22 +kotlin_version=1.9.10 logback_version=1.2.11 kotlin.code.style=official diff --git a/reverse-proxy/build.gradle.kts b/reverse-proxy/build.gradle.kts index cdfea9ce..ea1f0006 100644 --- a/reverse-proxy/build.gradle.kts +++ b/reverse-proxy/build.gradle.kts @@ -2,8 +2,8 @@ val kotlin_version: String by project val logback_version: String by project plugins { - kotlin("jvm") version "1.8.22" - id("io.ktor.plugin") version "2.3.4" + kotlin("jvm") version "1.9.10" + id("io.ktor.plugin") version "2.3.5" } application { diff --git a/reverse-proxy/gradle.properties b/reverse-proxy/gradle.properties index 43d1baaf..8151c200 100644 --- a/reverse-proxy/gradle.properties +++ b/reverse-proxy/gradle.properties @@ -1,3 +1,3 @@ -kotlin_version=1.8.22 +kotlin_version=1.9.10 logback_version=1.2.11 kotlin.code.style=official diff --git a/rx/build.gradle.kts b/rx/build.gradle.kts index 91cca6a3..b4d56b5a 100644 --- a/rx/build.gradle.kts +++ b/rx/build.gradle.kts @@ -2,8 +2,8 @@ val kotlin_version: String by project val logback_version: String by project plugins { - kotlin("jvm") version "1.8.22" - id("io.ktor.plugin") version "2.3.4" + kotlin("jvm") version "1.9.10" + id("io.ktor.plugin") version "2.3.5" } application { diff --git a/rx/gradle.properties b/rx/gradle.properties index 43d1baaf..8151c200 100644 --- a/rx/gradle.properties +++ b/rx/gradle.properties @@ -1,3 +1,3 @@ -kotlin_version=1.8.22 +kotlin_version=1.9.10 logback_version=1.2.11 kotlin.code.style=official diff --git a/sse/build.gradle.kts b/sse/build.gradle.kts index ccdc11fa..05332101 100644 --- a/sse/build.gradle.kts +++ b/sse/build.gradle.kts @@ -2,8 +2,8 @@ val kotlin_version: String by project val logback_version: String by project plugins { - kotlin("jvm") version "1.8.22" - id("io.ktor.plugin") version "2.3.4" + kotlin("jvm") version "1.9.10" + id("io.ktor.plugin") version "2.3.5" } application { diff --git a/sse/gradle.properties b/sse/gradle.properties index 43d1baaf..8151c200 100644 --- a/sse/gradle.properties +++ b/sse/gradle.properties @@ -1,3 +1,3 @@ -kotlin_version=1.8.22 +kotlin_version=1.9.10 logback_version=1.2.11 kotlin.code.style=official diff --git a/structured-logging/build.gradle.kts b/structured-logging/build.gradle.kts index 53f358ca..fb666499 100644 --- a/structured-logging/build.gradle.kts +++ b/structured-logging/build.gradle.kts @@ -2,8 +2,8 @@ val kotlin_version: String by project val logback_version: String by project plugins { - kotlin("jvm") version "1.8.22" - id("io.ktor.plugin") version "2.3.4" + kotlin("jvm") version "1.9.10" + id("io.ktor.plugin") version "2.3.5" } application { diff --git a/structured-logging/gradle.properties b/structured-logging/gradle.properties index 43d1baaf..8151c200 100644 --- a/structured-logging/gradle.properties +++ b/structured-logging/gradle.properties @@ -1,3 +1,3 @@ -kotlin_version=1.8.22 +kotlin_version=1.9.10 logback_version=1.2.11 kotlin.code.style=official diff --git a/version-diff/build.gradle.kts b/version-diff/build.gradle.kts index d1fc0a83..47dc53e1 100644 --- a/version-diff/build.gradle.kts +++ b/version-diff/build.gradle.kts @@ -4,9 +4,9 @@ val kotlin_version: String by project val logback_version: String by project plugins { - kotlin("jvm") version "1.8.22" - id("io.ktor.plugin") version "2.3.4" - kotlin("plugin.serialization") version "1.8.22" + kotlin("jvm") version "1.9.10" + id("io.ktor.plugin") version "2.3.5" + kotlin("plugin.serialization") version "1.9.10" } group = "org.example" diff --git a/version-diff/gradle.properties b/version-diff/gradle.properties index 43d1baaf..8151c200 100644 --- a/version-diff/gradle.properties +++ b/version-diff/gradle.properties @@ -1,3 +1,3 @@ -kotlin_version=1.8.22 +kotlin_version=1.9.10 logback_version=1.2.11 kotlin.code.style=official diff --git a/youkube/build.gradle.kts b/youkube/build.gradle.kts index 32cf4fc6..8278e5c5 100644 --- a/youkube/build.gradle.kts +++ b/youkube/build.gradle.kts @@ -2,9 +2,9 @@ val kotlin_version: String by project val logback_version: String by project plugins { - kotlin("jvm") version "1.8.22" - id("io.ktor.plugin") version "2.3.4" - kotlin("plugin.serialization") version "1.8.22" + kotlin("jvm") version "1.9.10" + id("io.ktor.plugin") version "2.3.5" + kotlin("plugin.serialization") version "1.9.10" } application { diff --git a/youkube/gradle.properties b/youkube/gradle.properties index 43d1baaf..8151c200 100644 --- a/youkube/gradle.properties +++ b/youkube/gradle.properties @@ -1,3 +1,3 @@ -kotlin_version=1.8.22 +kotlin_version=1.9.10 logback_version=1.2.11 kotlin.code.style=official