Files
kotlin-fork/libraries/tools/kotlin-noarg/build.gradle.kts
T
Alexander.Likhachev 357d12fc8e [Build] Move JUnit dependencies into the version catalog
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
2023-09-06 22:47:33 +00:00

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"
}
}
}