6afceb1e84
It's a refactoring because the list of dependencies shouldn't change Follow up for KTI-942
28 lines
744 B
Kotlin
28 lines
744 B
Kotlin
import org.jetbrains.kotlin.pill.PillExtension
|
|
|
|
plugins {
|
|
id("gradle-plugin-common-configuration")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
pill {
|
|
variant = PillExtension.Variant.FULL
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(project(":kotlin-gradle-plugin"))
|
|
compileOnly(project(":kotlin-compiler-embeddable"))
|
|
|
|
embedded(project(":kotlinx-atomicfu-compiler-plugin")) { isTransitive = false }
|
|
}
|
|
|
|
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"
|
|
}
|
|
}
|
|
} |