From 26b1fbe93a6dc60a59595da7fdde673b14a6ad80 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 04:13:58 +0000 Subject: [PATCH] :arrow_up: Bump the gradle group across 1 directory with 5 updates Bumps the gradle group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [org.jetbrains.kotlinx:kotlinx-coroutines-core](https://github.com/Kotlin/kotlinx.coroutines) | `1.8.0` | `1.9.0` | | [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) | `1.5.6` | `1.5.12` | | [org.junit:junit-bom](https://github.com/junit-team/junit5) | `5.10.2` | `5.11.3` | | [org.jetbrains.kotlin.jvm](https://github.com/JetBrains/kotlin) | `1.9.23` | `2.0.21` | | com.github.johnrengelman.shadow | `7.1.2` | `8.1.1` | Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core` from 1.8.0 to 1.9.0 - [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases) - [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md) - [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.8.0...1.9.0) Updates `ch.qos.logback:logback-classic` from 1.5.6 to 1.5.12 - [Commits](https://github.com/qos-ch/logback/compare/v_1.5.6...v_1.5.12) Updates `org.junit:junit-bom` from 5.10.2 to 5.11.3 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.10.2...r5.11.3) Updates `org.jetbrains.kotlin.jvm` from 1.9.23 to 2.0.21 - [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/v1.9.23...v2.0.21) Updates `com.github.johnrengelman.shadow` from 7.1.2 to 8.1.1 --- updated-dependencies: - dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle - dependency-name: ch.qos.logback:logback-classic dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle - dependency-name: org.junit:junit-bom dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle - dependency-name: org.jetbrains.kotlin.jvm dependency-type: direct:production update-type: version-update:semver-major dependency-group: gradle - dependency-name: com.github.johnrengelman.shadow dependency-type: direct:production update-type: version-update:semver-major dependency-group: gradle ... Signed-off-by: dependabot[bot] --- build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 0389bce..3af1b4e 100644 --- a/build.gradle +++ b/build.gradle @@ -6,9 +6,9 @@ buildscript { plugins { id 'java' - id "org.jetbrains.kotlin.jvm" version "1.9.23" + id "org.jetbrains.kotlin.jvm" version "2.0.21" id 'idea' - id 'com.github.johnrengelman.shadow' version '7.1.2' + id 'com.github.johnrengelman.shadow' version '8.1.1' id 'net.researchgate.release' version '3.0.2' } @@ -22,14 +22,14 @@ repositories { dependencies { implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8' - implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0' + implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0' implementation 'io.github.microutils:kotlin-logging-jvm:3.0.5' - implementation 'ch.qos.logback:logback-classic:1.5.6' + implementation 'ch.qos.logback:logback-classic:1.5.12' implementation 'com.xenomachina:kotlin-argparser:2.0.7' implementation 'xyz.poeschl:Kixelflut:2.1.0' implementation files('libs/SwingMazeDemo-0.0.1-SNAPSHOT-jar-with-dependencies-2020-03-06.jar') - testImplementation(platform('org.junit:junit-bom:5.10.2')) + testImplementation(platform('org.junit:junit-bom:5.11.3')) testImplementation 'org.junit.jupiter:junit-jupiter' testImplementation 'com.willowtreeapps.assertk:assertk-jvm:0.28.1' }