I want to update to Kotlin 2.1.0 and Kotest 6.0.0....
# kotest
p
I want to update to Kotlin 2.1.0 and Kotest 6.0.0.M1: https://github.com/krzema12/snakeyaml-engine-kmp/pull/231/files. I'm getting this build failure: https://github.com/krzema12/snakeyaml-engine-kmp/actions/runs/12408454269/job/34640183166?pr=231
Copy code
` not determine the dependencies of task ':kotlinNpmInstall'.
> Could not resolve all dependencies for configuration ':jsTestNpmAggregated'.
   > Could not find io.kotest:kotest-framework-engine:.
     Required by:
         root project :
   > Could not find io.kotest:kotest-framework-api:.
     Required by:
         root project :
   > Could not find io.kotest:kotest-assertions-core:.
     Required by:
         root project :
I use
kotest-bom
, and it turns out that for 6.0.0.M1 it doesn't have
kotest-framework-engine
,
kotest-framework-api
and
kotest-assertions-core
, instead it just has its
-jvm
variants. The desired variants are present for 5.9.1. Looks like a bug?
@Adam S I see you were playing with kotest-bom/build.gradle.kts so you perhaps have some context
as a mitigation, I'll stop using bom (and long-term, maybe we should introduce Gradle Version Catalog)