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.
29 lines
950 B
Kotlin
29 lines
950 B
Kotlin
plugins {
|
|
id("gradle-plugin-common-configuration")
|
|
}
|
|
|
|
dependencies {
|
|
commonApi(platform(project(":kotlin-gradle-plugins-bom")))
|
|
commonApi(project(":kotlin-gradle-plugin-model"))
|
|
|
|
commonCompileOnly(project(":kotlin-compiler-embeddable"))
|
|
commonCompileOnly(project(":kotlin-allopen-compiler-plugin"))
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
create("kotlinAllopenPlugin") {
|
|
id = "org.jetbrains.kotlin.plugin.allopen"
|
|
displayName = "Kotlin All Open compiler plugin"
|
|
description = displayName
|
|
implementationClass = "org.jetbrains.kotlin.allopen.gradle.AllOpenGradleSubplugin"
|
|
}
|
|
create("kotlinSpringPlugin") {
|
|
id = "org.jetbrains.kotlin.plugin.spring"
|
|
displayName = "Kotlin Spring compiler plugin"
|
|
description = displayName
|
|
implementationClass = "org.jetbrains.kotlin.allopen.gradle.SpringGradleSubplugin"
|
|
}
|
|
}
|
|
}
|