Build: Add proper kotlin-compiler-runner-unshaded for ide artifacts

Fixes tests in kt-212-master branch of kotlin plugin in
intellij-community repository
This commit is contained in:
Vyacheslav Gerasimov
2021-09-27 20:17:44 +03:00
parent 825ecc3a6f
commit 29787218e1
12 changed files with 36 additions and 13 deletions
+6 -10
View File
@@ -6,22 +6,18 @@ plugins {
}
dependencies {
embedded(project(":kotlin-compiler-runner-unshaded")) { isTransitive = false }
api(project(":kotlin-build-common"))
compileOnly(project(":compiler:cli-common"))
compileOnly(project(":kotlin-preloader"))
compileOnly(project(":compiler:frontend.java"))
compileOnly(project(":daemon-common"))
compileOnly(project(":daemon-common-new"))
api(project(":kotlin-daemon-client"))
compileOnly(project(":compiler:util"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
runtimeOnly(project(":kotlin-compiler-embeddable"))
api(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) { isTransitive = false }
runtimeOnly(project(":kotlin-compiler-embeddable"))
}
sourceSets {
"main" { projectDefault() }
"test" {}
"main" { }
"test" { }
}
publish()