How can apply both `kotlin-dsl` and `plugin.serial...
# community-support
m
How can apply both
kotlin-dsl
and
plugin.serialization
but version-less? As I understand,
kotlin-dsl
has a built-in version in every Gradle, and it implicitly applies
kotlin.jvm
with a specific version, e.g. 2.20.0 in Gradle 9.2.1. But I also need
plugin.serialization
. Is there any way to apply the latter but avoid having the string "2.20.0" appear in the version catalog? Obviously, I don't want to version
plugin.serialization
independently.
p
kotlin("plugin.serialization") version embeddedKotlinVersion
🎯 1
v
Don't remember, maybe there is also
embeddedKotlin("plugin.serialization")
like for dependencies?