Skip to content

Commit 6c2925f

Browse files
authored
Bump Ktor to 2.3.7 (#183)
1 parent eab1c04 commit 6c2925f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+74
-74
lines changed

chat/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ buildscript {
33
mavenCentral()
44
}
55
dependencies {
6-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10"
6+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.21"
77
}
88
}
99

@@ -28,14 +28,14 @@ kotlin {
2828

2929
sourceSets.each {
3030
it.dependencies {
31-
implementation(project.dependencies.enforcedPlatform("io.ktor:ktor-bom:2.3.6"))
31+
implementation(project.dependencies.enforcedPlatform("io.ktor:ktor-bom:2.3.7"))
3232
}
3333
}
3434

3535
sourceSets {
3636
backendMain {
3737
dependencies {
38-
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10"
38+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.21"
3939
implementation "io.ktor:ktor-server-netty"
4040
implementation "io.ktor:ktor-server-websockets"
4141
implementation "io.ktor:ktor-server-call-logging"

client-mpp/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
gradlePluginPortal()
66
}
77
dependencies {
8-
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10")
8+
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.21")
99
classpath("com.android.tools.build:gradle:7.0.4")
1010
}
1111
}

client-mpp/shared/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ kotlin {
1919

2020
sourceSets.each {
2121
it.dependencies {
22-
implementation(project.dependencies.enforcedPlatform("io.ktor:ktor-bom:2.3.6"))
22+
implementation(project.dependencies.enforcedPlatform("io.ktor:ktor-bom:2.3.7"))
2323
}
2424
}
2525

client-multipart/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ buildscript {
44
gradlePluginPortal()
55
}
66
dependencies {
7-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10"
8-
classpath "io.ktor.plugin:plugin:2.3.6"
7+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.21"
8+
classpath "io.ktor.plugin:plugin:2.3.7"
99
}
1010
}
1111

@@ -27,7 +27,7 @@ repositories {
2727
}
2828

2929
dependencies {
30-
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10'
30+
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.21'
3131
implementation "io.ktor:ktor-server-html-builder"
3232
implementation 'ch.qos.logback:logback-classic:1.4.6'
3333
implementation 'io.ktor:ktor-server-netty-jvm'

client-tools/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ buildscript {
44
gradlePluginPortal()
55
}
66
dependencies {
7-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10"
8-
classpath "io.ktor.plugin:plugin:2.3.6"
7+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.21"
8+
classpath "io.ktor.plugin:plugin:2.3.7"
99
}
1010
}
1111

@@ -27,7 +27,7 @@ repositories {
2727
}
2828

2929
dependencies {
30-
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10'
30+
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.21'
3131
implementation "io.ktor:ktor-server-html-builder"
3232
implementation 'ch.qos.logback:logback-classic:1.4.6'
3333
implementation 'io.ktor:ktor-server-netty-jvm'

di-kodein/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ val kotlin_version: String by project
22
val logback_version: String by project
33

44
plugins {
5-
kotlin("jvm") version "1.9.10"
6-
id("io.ktor.plugin") version "2.3.6"
7-
kotlin("plugin.serialization") version "1.9.10"
5+
kotlin("jvm") version "1.9.21"
6+
id("io.ktor.plugin") version "2.3.7"
7+
kotlin("plugin.serialization") version "1.9.21"
88
}
99

1010
application {

di-kodein/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
kotlin_version=1.9.10
1+
kotlin_version=1.9.21
22
logback_version=1.2.11
33
kotlin.code.style=official

filelisting/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ val kotlin_version: String by project
22
val logback_version: String by project
33

44
plugins {
5-
kotlin("jvm") version "1.9.10"
6-
id("io.ktor.plugin") version "2.3.6"
5+
kotlin("jvm") version "1.9.21"
6+
id("io.ktor.plugin") version "2.3.7"
77
}
88

99
application {

filelisting/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
kotlin_version=1.9.10
1+
kotlin_version=1.9.21
22
logback_version=1.2.11
33
kotlin.code.style=official

fullstack-mpp/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77

88
dependencies {
9-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10"
9+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.21"
1010
}
1111
}
1212

@@ -29,7 +29,7 @@ kotlin {
2929

3030
sourceSets.each {
3131
it.dependencies {
32-
implementation(project.dependencies.enforcedPlatform("io.ktor:ktor-bom:2.3.6"))
32+
implementation(project.dependencies.enforcedPlatform("io.ktor:ktor-bom:2.3.7"))
3333
}
3434
}
3535

0 commit comments

Comments
 (0)