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.
24 lines
716 B
Kotlin
24 lines
716 B
Kotlin
plugins {
|
|
id("gradle-plugin-common-configuration")
|
|
}
|
|
|
|
dependencies {
|
|
commonApi(platform(project(":kotlin-gradle-plugins-bom")))
|
|
commonApi(project(":kotlin-gradle-plugin-model"))
|
|
|
|
commonCompileOnly(project(":compiler"))
|
|
commonCompileOnly(project(":kotlin-sam-with-receiver-compiler-plugin"))
|
|
|
|
testImplementation(libs.junit4)
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
create("samWithReceiver") {
|
|
id = "org.jetbrains.kotlin.plugin.sam.with.receiver"
|
|
displayName = "Kotlin Sam-with-receiver compiler plugin"
|
|
description = displayName
|
|
implementationClass = "org.jetbrains.kotlin.samWithReceiver.gradle.SamWithReceiverGradleSubplugin"
|
|
}
|
|
}
|
|
} |