357d12fc8e
The `kotlin-test` dependencies are left untouched as changing them affects publications, thus these versions are independent from the used inside our build #KTI-1349 In Progress
39 lines
1.1 KiB
Kotlin
39 lines
1.1 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(":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"
|
|
}
|
|
}
|
|
}
|