diff --git a/build.gradle.kts b/build.gradle.kts index a554e58..b745a68 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,11 +10,11 @@ buildscript { plugins { java - kotlin("jvm") version "2.1.0" + kotlin("jvm") version "2.2.21" `maven-publish` jacoco id("com.github.kt3k.coveralls") version "2.12.2" - id("org.jmailen.kotlinter") version "5.0.1" + id("org.jmailen.kotlinter") version "5.2.0" } group = "com.github.moia-dev" diff --git a/router-openapi-request-validator/build.gradle.kts b/router-openapi-request-validator/build.gradle.kts index 4e2cdfb..9cd9bc2 100644 --- a/router-openapi-request-validator/build.gradle.kts +++ b/router-openapi-request-validator/build.gradle.kts @@ -6,11 +6,11 @@ dependencies { implementation(kotlin("stdlib")) implementation(kotlin("reflect")) - api("com.atlassian.oai:swagger-request-validator-core:2.44.1") + api("com.atlassian.oai:swagger-request-validator-core:2.46.0") 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:6.0.1") + testImplementation("org.assertj:assertj-core:3.27.6") + testImplementation("io.mockk:mockk:1.14.6") + 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..c66d1aa 100644 --- a/router-protobuf/build.gradle.kts +++ b/router-protobuf/build.gradle.kts @@ -1,29 +1,29 @@ plugins { - id("com.google.protobuf") version "0.9.4" + id("com.google.protobuf") version "0.9.5" } repositories { mavenCentral() } -val protoVersion = "4.29.3" +val protoVersion = "4.33.0" 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") + implementation("com.google.guava:guava:33.5.0-jre") api(project(":router")) - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.4") + testImplementation("org.junit.jupiter:junit-jupiter-engine:6.0.1") 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("com.jayway.jsonpath:json-path:2.9.0") + testImplementation("org.assertj:assertj-core:3.27.6") + testImplementation("io.mockk:mockk:1.14.6") + testImplementation("org.slf4j:slf4j-simple:2.0.17") + testImplementation("com.jayway.jsonpath:json-path:2.10.0") } protobuf { diff --git a/router/build.gradle.kts b/router/build.gradle.kts index ded63b8..7c89a76 100644 --- a/router/build.gradle.kts +++ b/router/build.gradle.kts @@ -3,18 +3,18 @@ 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-core:1.4.0") + api("com.amazonaws:aws-lambda-java-events:3.16.1") - 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") - api("com.google.guava:guava:33.4.0-jre") + implementation("org.slf4j:slf4j-api:2.0.17") + api("com.fasterxml.jackson.core:jackson-databind:2.20.1") + api("com.fasterxml.jackson.module:jackson-module-kotlin:2.20.1") + api("com.google.guava:guava:33.5.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:6.0.1") + testImplementation("org.junit.jupiter:junit-jupiter-params:6.0.1") 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.6") + testImplementation("io.mockk:mockk:1.14.6") + testImplementation("ch.qos.logback:logback-classic:1.5.20") }