Paulo Cereda
09/16/2025, 8:15 PMbuild.gradle.kts with:
...
plugins {
kotlin("multiplatform") version "2.2.20"
alias("com.github.ben-manes.versions") version "0.52.0"
...
}
...
sourceSets {
...
commonTest {
dependencies {
implementation(kotlin("test"))
...
}
}
...
}
When I run (Gradle 9):
./gradlew --no-parallel dependencyUpdates
I get:
Failed to compare versions for the following dependencies because they were declared without version:
- org.jetbrains.kotlin:kotlin-test
I checked the versions plugin repository for any clues on how to omit / resolve this warning, but no luck. Does anyone have a suggestion of what I could do? 😊 Thanks!ephemient
09/16/2025, 8:27 PMkotlin("test", coreLibrariesVersion)
?ephemient
09/16/2025, 8:29 PMdependencies {
implementation(platform(kotlin("bom")))
}
to get all the Kotlin versions in sync but I dunno about KMPPaulo Cereda
09/16/2025, 8:41 PM