I would like to use a more recent Kotlin version in my "precompiled script plugins" than Gradle's embedded Kotlin version. I use Gradle 8.3 which embeds Kotlin 1.9.0 but in my projects I would like to use Kotlin 1.9.10.
Is the following
Won't this interfere with Gradle's embedded Kotlin 1.9.0?
Thanks.
v
Vampire
09/06/2023, 11:57 AM
Don't confuse the version you build your plugins with, with the version of the plugin you want to apply to the project where you apply your plugins.
It should not interfere, as you only define it as implementation dependency and then apply it to the target project where you apply your plugin.
If you would apply the KGP in a different version to the