From 7034381d7e6ef16f5e794e293a677a472fd5aeb8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Aug 2024 14:50:47 +0200 Subject: [PATCH] Bump the dependencies group across 1 directory with 3 updates (#213) Bumps the dependencies group with 3 updates in the /ktor-app directory: [org.testcontainers:junit-jupiter](https://github.com/testcontainers/testcontainers-java), [jvm](https://github.com/JetBrains/kotlin) and [org.jetbrains.kotlin.plugin.serialization](https://github.com/JetBrains/kotlin). Updates `org.testcontainers:junit-jupiter` from 1.20.0 to 1.20.1 - [Release notes](https://github.com/testcontainers/testcontainers-java/releases) - [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/testcontainers/testcontainers-java/compare/1.20.0...1.20.1) Updates `jvm` from 2.0.0 to 2.0.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v2.0.0...v2.0.10) Updates `org.jetbrains.kotlin.plugin.serialization` from 2.0.0 to 2.0.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v2.0.0...v2.0.10) --- updated-dependencies: - dependency-name: org.testcontainers:junit-jupiter dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: jvm dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: org.jetbrains.kotlin.plugin.serialization dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- ktor-app/build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ktor-app/build.gradle.kts b/ktor-app/build.gradle.kts index 3df7c7b..4a04885 100644 --- a/ktor-app/build.gradle.kts +++ b/ktor-app/build.gradle.kts @@ -8,9 +8,9 @@ val logbackVersion: String = project.property("logback_version") as String val postgresVersion: String = project.property("postgres_version") as String plugins { - kotlin("jvm") version "2.0.0" + kotlin("jvm") version "2.0.10" id("io.ktor.plugin") version "2.3.12" - id("org.jetbrains.kotlin.plugin.serialization") version "2.0.0" + id("org.jetbrains.kotlin.plugin.serialization") version "2.0.10" id("org.jlleitschuh.gradle.ktlint") version "12.1.1" } @@ -53,7 +53,7 @@ dependencies { testImplementation("org.jetbrains.kotlin:kotlin-test-junit5:$kotlinVersion") testImplementation("io.mockk:mockk:1.13.12") - testImplementation("org.testcontainers:junit-jupiter:1.20.0") + testImplementation("org.testcontainers:junit-jupiter:1.20.1") testImplementation("org.assertj:assertj-core:3.26.3") }