blob: d14f6bfca6f2e0e296c53c0da1bb886a34e9a22a [file] [log] [blame] [edit]
description = "Compiler runner + daemon client unshaded"
plugins {
kotlin("jvm")
id("jps-compatible")
id("gradle-plugin-compiler-dependency-configuration")
}
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" {}
}