diff --git a/build.gradle.kts b/build.gradle.kts index a554e58..7ea1ee9 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,7 +10,7 @@ buildscript { plugins { java - kotlin("jvm") version "2.1.0" + kotlin("jvm") version "2.1.10" `maven-publish` jacoco id("com.github.kt3k.coveralls") version "2.12.2" diff --git a/router-openapi-request-validator/build.gradle.kts b/router-openapi-request-validator/build.gradle.kts index 4e2cdfb..3767c02 100644 --- a/router-openapi-request-validator/build.gradle.kts +++ b/router-openapi-request-validator/build.gradle.kts @@ -9,8 +9,8 @@ dependencies { api("com.atlassian.oai:swagger-request-validator-core:2.44.1") api(project(":router")) - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.4") - testImplementation("org.assertj:assertj-core:3.27.2") - testImplementation("io.mockk:mockk:1.13.14") - testImplementation("org.slf4j:slf4j-simple:2.0.16") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.0") + testImplementation("org.assertj:assertj-core:3.27.3") + testImplementation("io.mockk:mockk:1.13.17") + testImplementation("org.slf4j:slf4j-simple:2.0.17") } \ No newline at end of file diff --git a/router-protobuf/build.gradle.kts b/router-protobuf/build.gradle.kts index 7fab535..d19d859 100644 --- a/router-protobuf/build.gradle.kts +++ b/router-protobuf/build.gradle.kts @@ -12,17 +12,17 @@ dependencies { implementation(kotlin("stdlib")) implementation(kotlin("reflect")) - implementation("org.slf4j:slf4j-api:2.0.16") + implementation("org.slf4j:slf4j-api:2.0.17") api("com.google.protobuf:protobuf-java:$protoVersion") api("com.google.protobuf:protobuf-java-util:$protoVersion") implementation("com.google.guava:guava:33.4.0-jre") api(project(":router")) - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.4") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.0") testImplementation("com.willowtreeapps.assertk:assertk-jvm:0.28.1") - testImplementation("org.assertj:assertj-core:3.27.2") - testImplementation("io.mockk:mockk:1.13.14") - testImplementation("org.slf4j:slf4j-simple:2.0.16") + testImplementation("org.assertj:assertj-core:3.27.3") + testImplementation("io.mockk:mockk:1.13.17") + testImplementation("org.slf4j:slf4j-simple:2.0.17") testImplementation("com.jayway.jsonpath:json-path:2.9.0") } diff --git a/router/build.gradle.kts b/router/build.gradle.kts index ded63b8..29c2edb 100644 --- a/router/build.gradle.kts +++ b/router/build.gradle.kts @@ -4,17 +4,17 @@ dependencies { implementation(kotlin("stdlib")) implementation(kotlin("reflect")) api("com.amazonaws:aws-lambda-java-core:1.2.3") - api("com.amazonaws:aws-lambda-java-events:3.14.0") + api("com.amazonaws:aws-lambda-java-events:3.15.0") - implementation("org.slf4j:slf4j-api:2.0.16") - api("com.fasterxml.jackson.core:jackson-databind:2.18.2") - api("com.fasterxml.jackson.module:jackson-module-kotlin:2.18.2") + implementation("org.slf4j:slf4j-api:2.0.17") + api("com.fasterxml.jackson.core:jackson-databind:2.18.3") + api("com.fasterxml.jackson.module:jackson-module-kotlin:2.18.3") api("com.google.guava:guava:33.4.0-jre") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.4") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.4") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.0") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.0") testImplementation("com.willowtreeapps.assertk:assertk-jvm:0.28.1") - testImplementation("org.assertj:assertj-core:3.27.2") - testImplementation("io.mockk:mockk:1.13.14") - testImplementation("ch.qos.logback:logback-classic:1.5.16") + testImplementation("org.assertj:assertj-core:3.27.3") + testImplementation("io.mockk:mockk:1.13.17") + testImplementation("ch.qos.logback:logback-classic:1.5.17") }