Javi
08/30/2024, 2:13 PMimplementation configuration?Javi
08/30/2024, 2:14 PMVampire
08/30/2024, 3:39 PMIt is not appearing in the resolution strategyIt should be if you are in the right one. But as with normal dependencies, you shouldn't use it, but use a constraint instead. If you add an according constraint, for example to
buildscript { dependencies { } } it should work iirc.Javi
08/30/2024, 4:53 PMVampire
08/30/2024, 4:56 PMJavi
08/30/2024, 5:00 PMbuildscript {
dependencies {
constraints {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.20")
}
}
}Vampire
08/30/2024, 5:01 PMJavi
08/30/2024, 5:01 PMVampire
08/30/2024, 5:02 PMJavi
08/30/2024, 5:04 PMKotlin version: 2.0.20
If I comment the classpath line, then
Kotlin version: 2.0.10Vampire
08/30/2024, 5:05 PM