Victor Ermolaev
10/19/2021, 2:12 PMval compilation = KotlinCompilation()
.apply {
sources = listOf(source)
compilerPlugins = listOf(MyPlugin())
inheritClassPath = true
messageOutputStream = System.out
}
.compile()
I use kotlin-compile-testing, what do I need to add to the list of the compiler plugins to also invoke the serialization plugin?jw
10/22/2021, 2:51 PMorg.jetbrains.kotlinx.serialization.compiler.extensions.SerializationComponentRegistrar
Victor Ermolaev
10/22/2021, 2:52 PM