kotlinx.serialization compiler plugin is not appli...
# ktor
e
kotlinx.serialization compiler plugin is not applied to the module, so this annotation would not be processed. Make sure that you've setup your buildscript correctly and re-import project. I am getting this warning in my ktor server project. These are my plugins plugins { _kotlin_("jvm") version "2.0.0" id("io.ktor.plugin") version "2.3.12" id("org.jetbrains.kotlin.plugin.serialization") version "2.0.0" } Any help ?
a
Have you applied the serialization plugin to the same module where the
Serializable
is used?
e
its just a warning but it works
a
Then it's an IDE issue
e
IntelliJ IDEA 2023.1.6 (Community Edition)
a
You can file an issue here.
e
thx man!