Files
kotlin-fork/libraries/tools/kotlin-allopen/build.gradle.kts
T
Yahor Berdnikau 1ccd7afde7 Publish allopen compiler plugin separately
- added also 'kotlin-allopen-compiler-plugin-embeddable' to be used with
  'kotlin-compiler-embeddable'
- 'kotlin-maven-allopen' now just depends on
  'kotlin-allopen-compiler-plugin' instead of "embeding" it into itself

^KT-52811 In Progress
2023-04-17 14:40:49 +00:00

36 lines
1.0 KiB
Kotlin

import org.jetbrains.kotlin.pill.PillExtension
plugins {
id("gradle-plugin-common-configuration")
id("jps-compatible")
}
pill {
variant = PillExtension.Variant.FULL
}
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"
}
}
}