Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
serpro69 committed Oct 23, 2023
1 parent 910668e commit 8aadc4f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
24 changes: 12 additions & 12 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand All @@ -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<JavaPluginExtension> {
Expand Down Expand Up @@ -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"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion cli-bot/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
8 changes: 4 additions & 4 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 8aadc4f

Please sign in to comment.