How does the integration between IntelliJ and Kotl...
# serialization
c
How does the integration between IntelliJ and Kotlin compiler plugins work? I use a non-standard (well, non-Gradle) build for my Kotlin code, and I get errors all over the place because the IDE can’t resolve the generated
Type.serializer()
methods. I have the serialization compiler plugin configured, both in my build and in the Kotlin Compiler settings in the IDE. The code compiles and runs fine both when built in the IDE and when run via the code compiled by my build, but the IDE just isn’t aware that the plugin has been applied. How does this work for Gradle? I had similar problems with Maven, it’s not just really esoteric builds which suffer from this. Is there a way I can configure this?