Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ logcaptor = "io.github.hakky54:logcaptor:2.12.1"
# environment variable
janino = "org.codehaus.janino:janino:3.1.12"
# Testing libraries
junit5-jupiter = "org.junit.jupiter:junit-jupiter:5.14.0"
junit5-platform-launcher = "org.junit.platform:junit-platform-launcher:1.14.0"
junit5-jupiter = "org.junit.jupiter:junit-jupiter:6.0.0"
junit5-platform-launcher = "org.junit.platform:junit-platform-launcher:6.0.0"
assertj = "org.assertj:assertj-core:3.27.6"
sarif4k = "io.github.detekt.sarif4k:sarif4k:0.6.0"
jimfs = "com.google.jimfs:jimfs:1.3.1"
4 changes: 2 additions & 2 deletions ktlint-ruleset-template/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ dependencies {
implementation("com.pinterest.ktlint:ktlint-cli-ruleset-core:1.7.1")
implementation("com.pinterest.ktlint:ktlint-rule-engine-core:1.7.1")

testImplementation("org.junit.jupiter:junit-jupiter:5.14.0")
testImplementation("org.junit.jupiter:junit-jupiter:6.0.0")
// Since Gradle 8 the platform launcher needs explicitly be defined as runtime dependency to avoid classpath problems
// https://docs.gradle.org/8.12/userguide/upgrading_version_8.html#test_framework_implementation_dependencies
testImplementation("org.junit.platform:junit-platform-launcher:1.14.0")
testImplementation("org.junit.platform:junit-platform-launcher:6.0.0")
testImplementation("org.slf4j:slf4j-simple:2.0.17")
testImplementation("com.pinterest.ktlint:ktlint-test:1.7.1")
}
Expand Down
Loading