b9aac83135
This should help with failed variants selection between different Kotlin Gradle plugins versions. ^KT-54691 In Progress
30 lines
802 B
Kotlin
30 lines
802 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"))
|
|
|
|
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"
|
|
}
|
|
}
|
|
} |