Files
kotlin-fork/plugins/noarg/noarg.k1/build.gradle.kts
T
2022-06-07 14:12:16 +00:00

22 lines
365 B
Kotlin

description = "Kotlin NoArg Compiler Plugin (K1)"
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
compileOnly(project(":compiler:frontend"))
compileOnly(project(":compiler:frontend.java"))
compileOnly(intellijCore())
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}
runtimeJar()
sourcesJar()
javadocJar()