29787218e1
Fixes tests in kt-212-master branch of kotlin plugin in intellij-community repository
26 lines
721 B
Kotlin
26 lines
721 B
Kotlin
description = "Compiler runner + daemon client unshaded"
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":kotlin-build-common"))
|
|
api(project(":kotlin-daemon-client"))
|
|
api(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) { isTransitive = false }
|
|
|
|
compileOnly(project(":compiler:cli-common"))
|
|
compileOnly(project(":kotlin-preloader"))
|
|
compileOnly(project(":compiler:frontend.java"))
|
|
compileOnly(project(":daemon-common"))
|
|
compileOnly(project(":daemon-common-new"))
|
|
compileOnly(project(":compiler:util"))
|
|
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|