1fb8fb2324
The 'FULL' variant proved to be hardly useful for everyday work. This change is the first step of removing the variant support from Pill.
21 lines
593 B
Kotlin
21 lines
593 B
Kotlin
plugins {
|
|
id("gradle-plugin-common-configuration")
|
|
}
|
|
|
|
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"
|
|
}
|
|
}
|
|
} |