main.io.mths.kava.compiler.KavaComponentRegistrar.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kava-compiler-plugin Show documentation
Show all versions of kava-compiler-plugin Show documentation
Kotlin Compiler Plugin to simplify development with kava.
The newest version!
package io.mths.kava.compiler
import com.google.auto.service.AutoService
import org.jetbrains.kotlin.compiler.plugin.CompilerPluginRegistrar
import org.jetbrains.kotlin.config.CompilerConfiguration
@AutoService(CompilerPluginRegistrar::class)
class KavaComponentRegistrar : CompilerPluginRegistrar() {
override val supportsK2 = true
override fun ExtensionStorage.registerExtensions(configuration: CompilerConfiguration) {
// ...
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy