Migrate atomicfu plugin configuration
^KT-49227 In Progress
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
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"))
|
||||
}
|
||||
|
||||
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"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user