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 build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ tasks.test {
configurations.matching { it.name.startsWith("ktlint") }.configureEach {
resolutionStrategy {
force(
"ch.qos.logback:logback-classic:1.5.25",
"ch.qos.logback:logback-core:1.5.25",
"ch.qos.logback:logback-classic:1.5.37",
"ch.qos.logback:logback-core:1.5.37",
)
}
}
Expand Down
12 changes: 6 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
# silently falls back to the JVM 24 bytecode target under a JDK 25 toolchain.
kotlin = "2.4.0"
# JUnit 6 (Jupiter) requires Java 17+ — fine here, the toolchain is JDK 25.
junit = "6.1.0"
junit = "6.1.1"
# ktlint-gradle 14.0.1+ fixed worker launching under a JDK 25 toolchain whose
# path contains spaces (e.g. C:\Program Files\...); do not pin below 14.
ktlint-plugin = "14.2.0"
# Maven Central publishing. Plain `maven-publish` cannot talk to the Sonatype
# Central Portal (the only path since OSSRH shut down); this plugin can. 0.34+
# supports Gradle 9.
maven-publish-plugin = "0.36.0"
maven-publish-plugin = "0.37.0"
# Foojay toolchain resolver — lets Gradle DOWNLOAD the JDK 25 toolchain when it
# isn't already installed (jvmToolchain(25) only declares the requirement).
foojay-resolver = "1.0.0"
Expand All @@ -32,16 +32,16 @@ kover = "0.9.8"
# Kotlin coroutines — the async core of the library (suspend verbs, Flow
# streaming, structured-concurrency cancellation). The `-test` artifact provides
# runTest + the virtual clock used to test timeouts/backoff without real waits.
kotlinx-coroutines = "1.10.2"
kotlinx-coroutines = "1.11.0"
# SLF4J — the standard JVM logging facade. The library logs through the API only;
# consumers add a binding (logback, etc.). 2.0.x defaults to a no-op (no binding
# required). logback (test-only) provides a binding + ListAppender for asserting
# on log output.
slf4j = "2.0.16"
logback = "1.5.25"
slf4j = "2.0.18"
logback = "1.5.37"
# kotlinx.serialization — the cassette (record/replay) JSON format. The compiler
# plugin is versioned with Kotlin; the runtime is declared here.
kotlinx-serialization = "1.8.0"
kotlinx-serialization = "1.11.0"

[libraries]
# JUnit BOM — aligns every junit-* artifact to one version; the dependencies
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
networkTimeout=10000
retries=0
retryBackOffMs=500
Expand Down
4 changes: 2 additions & 2 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading