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.
25 lines
682 B
Kotlin
25 lines
682 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-assignment-compiler-plugin"))
|
|
|
|
testImplementation(libs.junit4)
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
create("assignment") {
|
|
id = "org.jetbrains.kotlin.plugin.assignment"
|
|
displayName = "Kotlin Assignment compiler plugin"
|
|
description = displayName
|
|
implementationClass = "org.jetbrains.kotlin.assignment.plugin.gradle.AssignmentSubplugin"
|
|
}
|
|
}
|
|
}
|