Files
kotlin-fork/compiler/compiler-runner-unshaded/build.gradle.kts
T
Alexander.Likhachev 2412693ef0 [BT] Move KotlinLogger to the bt-api module
#KT-57398 In Progress
2023-06-23 12:34:23 +00:00

24 lines
585 B
Kotlin

description = "Compiler runner + daemon client unshaded"
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
implementation(project(":kotlin-daemon-client"))
compileOnly(project(":compiler:cli-common"))
compileOnly(project(":kotlin-preloader"))
compileOnly(project(":compiler:frontend.java"))
compileOnly(project(":daemon-common"))
compileOnly(project(":compiler:build-tools:kotlin-build-tools-api"))
compileOnly(project(":compiler:util"))
compileOnly(intellijCore())
}
sourceSets {
"main" { projectDefault() }
"test" {}
}