Files
kotlin-fork/libraries/tools/kotlin-noarg/build.gradle.kts
T
Yan Zhulanow 1fb8fb2324 [Pill] Do not import modules with the 'FULL' variant
The 'FULL' variant proved to be hardly useful for everyday work.
This change is the first step of removing the variant support from Pill.
2023-12-07 08:53:35 +00:00

32 lines
979 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-noarg-compiler-plugin"))
testImplementation(gradleApi())
testImplementation(libs.junit4)
}
gradlePlugin {
plugins {
create("kotlinNoargPlugin") {
id = "org.jetbrains.kotlin.plugin.noarg"
displayName = "Kotlin No Arg compiler plugin"
description = displayName
implementationClass = "org.jetbrains.kotlin.noarg.gradle.NoArgGradleSubplugin"
}
create("kotlinJpaPlugin") {
id = "org.jetbrains.kotlin.plugin.jpa"
displayName = "Kotlin JPA compiler plugin"
description = displayName
implementationClass = "org.jetbrains.kotlin.noarg.gradle.KotlinJpaSubplugin"
}
}
}