64f8b87b66
- rename plugin into 'kotlin-atomicfu-compiler-plugin' - add 'kotlin-atomicfu-compiler-plugin-embeddable' to be used with 'kotlin-comiler-embeddable' ^KT-52811 In Progress
28 lines
717 B
Kotlin
28 lines
717 B
Kotlin
import org.jetbrains.kotlin.pill.PillExtension
|
|
|
|
plugins {
|
|
id("gradle-plugin-common-configuration")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
pill {
|
|
variant = PillExtension.Variant.FULL
|
|
}
|
|
|
|
dependencies {
|
|
api(platform(project(":kotlin-gradle-plugins-bom")))
|
|
|
|
compileOnly(project(":kotlin-gradle-plugin"))
|
|
compileOnly(project(":kotlin-compiler-embeddable"))
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
create("atomicfu") {
|
|
id = "org.jetbrains.kotlin.plugin.atomicfu"
|
|
displayName = "Kotlin compiler plugin for kotlinx.atomicfu library"
|
|
description = displayName
|
|
implementationClass = "org.jetbrains.kotlinx.atomicfu.gradle.AtomicfuKotlinGradleSubplugin"
|
|
}
|
|
}
|
|
} |