Skip to content
Open
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
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ graphstream = "2.0"
ignite = "2.16.0"
junit = "5.11.4"
konf = "1.1.2"
kotest = "6.0.0.M1"
kotest = "6.0.7"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CRITICAL BUG kotest-multiplatform plugin version 6.0.7 does not exist

The kotest-multiplatform plugin (line 159) shares version.ref = "kotest" with the library artifacts, so it resolves to 6.0.7. The Gradle Plugin Portal only publishes io.kotest.multiplatform up to 6.0.0.M4; requesting 6.0.7 will fail at build time with a plugin resolution error.

Prompt to fix with AI

Copy this prompt into your AI coding assistant to fix this issue.

In gradle/libs.versions.toml, the `kotest-multiplatform` plugin at line 159 shares `version.ref = "kotest"` with the kotest library artifacts. After this PR bumps `kotest` to `6.0.7`, the plugin will attempt to resolve `io.kotest.multiplatform:6.0.7`, which does not exist on the Gradle Plugin Portal (latest is 6.0.0.M4). Fix by introducing a separate version entry, e.g. add `kotest-multiplatform = "6.0.0.M4"` in the `[versions]` section and update line 159 to `kotest-multiplatform = { id = "io.kotest.multiplatform", version.ref = "kotest-multiplatform" }`.

ktor = "2.3.13"
kotlin = "2.1.21"
mockito = "5.15.2"
Expand Down