From 8aadc4f9de53547f2fded129689deb178bfcf908 Mon Sep 17 00:00:00 2001 From: Sergio Pro <22973227+serpro69@users.noreply.github.com> Date: Mon, 23 Oct 2023 17:25:34 +0200 Subject: [PATCH] Update dependencies --- build.gradle.kts | 24 ++++++++++++------------ cli-bot/build.gradle.kts | 2 +- core/build.gradle.kts | 8 ++++---- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 8c6de703b..a4ff01c60 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ import org.gradle.api.tasks.testing.logging.TestExceptionFormat import org.gradle.api.tasks.testing.logging.TestLogEvent plugins { - kotlin("jvm") version "1.8.10" apply false + kotlin("jvm") version "1.9.10" apply false id("com.adarshr.test-logger") version "2.0.0" apply false id("com.github.ben-manes.versions") version "0.28.0" apply false id("io.qameta.allure") version "2.8.1" @@ -47,13 +47,13 @@ subprojects { implementation(kotlin("stdlib-jdk8")) implementation(kotlin("reflect")) implementation("com.github.mifmif:generex:1.0.2") - testImplementation("io.kotest:kotest-runner-junit5:5.5.5") - testImplementation("io.kotest:kotest-runner-junit5-jvm:5.5.5") - testImplementation("io.kotest:kotest-assertions-core-jvm:5.5.5") - testImplementation("io.kotest:kotest-property-jvm:5.5.5") - testImplementation("io.kotest.extensions:kotest-extensions-allure:1.2.0") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.2") - testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.2") + testImplementation("io.kotest:kotest-runner-junit5:5.7.2") + testImplementation("io.kotest:kotest-runner-junit5-jvm:5.7.2") + testImplementation("io.kotest:kotest-assertions-core-jvm:5.7.2") + testImplementation("io.kotest:kotest-property-jvm:5.7.2") + testImplementation("io.kotest.extensions:kotest-extensions-allure:1.3.0") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0") + testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.0") testRuntimeOnly("ch.qos.logback:logback-core:1.3.4") { version { strictly("1.3.4") // last stable for java 8 @@ -64,7 +64,7 @@ subprojects { strictly("1.3.4") // last stable for java 8 } } - testRuntimeOnly("org.codehaus.groovy:groovy:3.0.16") + testRuntimeOnly("org.codehaus.groovy:groovy:3.0.19") } configure { @@ -161,13 +161,13 @@ subprojects { allure { version = "2.8.1" aspectjweaver = false - aspectjVersion = "1.9.19" + aspectjVersion = "1.9.20.1" autoconfigure = true // TODO check if fixed in future versions of allure configuration = "testRuntimeOnly" // defaults to 'testCompile' which is incompatible with gradle 7.x - allureJavaVersion = "2.21.0" + allureJavaVersion = "2.24.0" useJUnit5 { - version = "2.21.0" + version = "2.24.0" } } } diff --git a/cli-bot/build.gradle.kts b/cli-bot/build.gradle.kts index b837451c9..3fe6635ce 100644 --- a/cli-bot/build.gradle.kts +++ b/cli-bot/build.gradle.kts @@ -12,7 +12,7 @@ val mainAppClass = "io.github.serpro69.kfaker.app.KFaker" dependencies { implementation(project(":core")) - implementation("info.picocli:picocli:4.7.1") + implementation("info.picocli:picocli:4.7.5") } application { diff --git a/core/build.gradle.kts b/core/build.gradle.kts index 64a98c3a4..dfaf715e1 100644 --- a/core/build.gradle.kts +++ b/core/build.gradle.kts @@ -7,16 +7,16 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar plugins { kotlin("jvm") - id("org.jetbrains.dokka") version "1.8.10" + id("org.jetbrains.dokka") version "1.9.10" `maven-publish` signing `yaml-to-json` } dependencies { - implementation("com.fasterxml.jackson.core:jackson-databind:2.14.2") - implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.14.2") - shadow("com.ibm.icu:icu4j:72.1") + implementation("com.fasterxml.jackson.core:jackson-databind:2.15.3") + implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.15.3") + shadow("com.ibm.icu:icu4j:73.2") shadow(kotlin("stdlib-jdk8")) shadow(kotlin("reflect")) shadow("com.github.mifmif:generex:1.0.2")