Files
kotlin-fork/plugins/sam-with-receiver/sam-with-receiver.cli/build.gradle.kts
T

26 lines
621 B
Kotlin

description = "Kotlin SamWithReceiver Compiler Plugin (CLI)"
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
api(project(":kotlin-sam-with-receiver-compiler-plugin.common"))
api(project(":kotlin-sam-with-receiver-compiler-plugin.k1"))
api(project(":kotlin-sam-with-receiver-compiler-plugin.k2"))
compileOnly(project(":compiler:util"))
compileOnly(project(":compiler:plugin-api"))
compileOnly(project(":compiler:fir:entrypoint"))
compileOnly(intellijCore())
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}
runtimeJar()
sourcesJar()
javadocJar()