Skip to content

Commit 6ac6b70

Browse files
committedMar 31, 2025
Bump ktor to 3.1.2
1 parent 677ee32 commit 6ac6b70

File tree

7 files changed

+9
-4
lines changed

7 files changed

+9
-4
lines changed
 

‎build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id("java-library")
55
kotlin("jvm") version "2.1.10" apply false
66
kotlin("plugin.serialization") version "2.1.10" // apply false
7-
id("io.ktor.plugin") version "3.1.0" apply false
7+
id("io.ktor.plugin") version "3.1.2" apply false
88
id("org.jlleitschuh.gradle.ktlint") version "11.6.1"
99
id("org.jlleitschuh.gradle.ktlint-idea") version "11.6.1"
1010
}

‎cpa-repo/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ dependencies {
7070
testImplementation(libs.ktor.client.content.negotiation)
7171
testImplementation(testLibs.ktor.server.test.host)
7272
testRuntimeOnly(libs.ojdbc8)
73+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
7374
testImplementation("org.testcontainers:oracle-xe:1.19.4")
7475
testImplementation(kotlin("test"))
7576

‎ebms-async/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ dependencies {
8080
testImplementation(libs.apache.santuario)
8181
testImplementation("org.testcontainers:kafka:1.19.0")
8282
testRuntimeOnly(testLibs.junit.jupiter.engine)
83+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
8384
}
8485

8586
application {

‎ebms-payload/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ dependencies {
6464
testImplementation(testLibs.mock.oauth2.server)
6565
testImplementation(testLibs.mockk.jvm)
6666
testRuntimeOnly(testLibs.junit.jupiter.engine)
67+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
6768
implementation(kotlin("stdlib-jdk8"))
6869
}
6970

‎ebms-provider/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ dependencies {
7777
testImplementation(libs.hikari)
7878
testImplementation(testLibs.postgresql)
7979
testRuntimeOnly(testLibs.junit.jupiter.engine)
80+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
8081
}
8182

8283
application {

‎felles/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ dependencies {
4444
api(libs.bundles.bouncycastle)
4545
testImplementation(testLibs.junit.jupiter.api)
4646
testImplementation(testLibs.junit.jupiter.engine)
47+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
4748

4849
runtimeOnly("org.postgresql:postgresql:42.7.3")
4950
}

‎settings.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencyResolutionManagement {
1313
create("libs") {
1414
version("bouncycastle", "1.76")
1515
version("exposed", "0.47.0")
16-
version("ktor", "3.1.0")
16+
version("ktor", "3.1.2")
1717
version("token-validation-ktor", "5.0.15")
1818
version("arrow", "1.2.4")
1919
version("suspendapp", "0.5.0")
@@ -83,12 +83,12 @@ dependencyResolutionManagement {
8383
}
8484

8585
create("testLibs") {
86-
version("junit", "5.9.2")
86+
version("junit", "5.12.1")
8787
version("hamcrest", "2.2")
8888
version("mockk", "1.13.10")
8989
version("testPostgres", "1.18.0")
9090
version("xmlunit", "2.9.1")
91-
version("ktor-server-test", "3.1.0")
91+
version("ktor-server-test", "3.1.2")
9292
version("kotest", "5.9.1")
9393

9494
library("ktor-server-test-host", "io.ktor", "ktor-server-test-host").versionRef("ktor-server-test")

0 commit comments

Comments
 (0)