[kotlin gradle plugin] enable to work with embedded k/n compiler.

This commit is contained in:
Vasily Levchenko
2021-07-09 14:39:46 +02:00
committed by Space
parent 1eb951749d
commit 2baf344f5f
8 changed files with 38 additions and 5 deletions
@@ -124,6 +124,7 @@ interface KotlinCompilerPluginSupportPlugin : Plugin<Project> {
fun getCompilerPluginId(): String
fun getPluginArtifact(): SubpluginArtifact
fun getPluginArtifactForNative(): SubpluginArtifact? = null
fun getPluginArtifactForNative(project: Project): SubpluginArtifact? = getPluginArtifactForNative()
}
open class SubpluginArtifact(val groupId: String, val artifactId: String, val version: String? = null)