792d44e617
^KT-49227 In Progress
29 lines
787 B
Kotlin
29 lines
787 B
Kotlin
import org.jetbrains.kotlin.pill.PillExtension
|
|
|
|
plugins {
|
|
id("gradle-plugin-common-configuration")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
pill {
|
|
variant = PillExtension.Variant.FULL
|
|
}
|
|
|
|
dependencies {
|
|
commonCompileOnly(project(":kotlin-gradle-plugin"))
|
|
commonCompileOnly(project(":kotlin-compiler-embeddable"))
|
|
|
|
embedded(project(":kotlinx-serialization-compiler-plugin")) { isTransitive = false }
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
create("kotlinSerialization") {
|
|
id = "org.jetbrains.kotlin.plugin.serialization"
|
|
displayName = "Kotlin compiler plugin for kotlinx.serialization library"
|
|
description = displayName
|
|
implementationClass = "org.jetbrains.kotlinx.serialization.gradle.SerializationGradleSubplugin"
|
|
}
|
|
}
|
|
}
|