Unify kotlinCompilerClasspath for all projects

This will prevent spawning second Kotlin daemon during compilation
except 'buildSrc' compilation. Original change was introduced in
2e515f3945 commit.
This commit is contained in:
Yahor Berdnikau
2022-05-05 13:59:44 +02:00
committed by Space
parent f016fd4766
commit af6f17c243
27 changed files with 13 additions and 29 deletions
@@ -9,7 +9,6 @@ dependencies {
api(kotlinStdlib())
compileOnly(project(":kotlin-reflect-api"))
testApi(commonDependency("junit"))
kotlinCompilerClasspath(project(":libraries:tools:stdlib-compiler-classpath"))
}
sourceSets {
@@ -21,7 +21,6 @@ dependencies {
testRuntimeOnly("org.slf4j:slf4j-nop:1.7.36")
testImplementation(kotlin("reflect"))
testImplementation(commonDependency("org.jetbrains.kotlinx", "kotlinx-coroutines-core"))
kotlinCompilerClasspath(project(":libraries:tools:stdlib-compiler-classpath"))
}
sourceSets {
@@ -10,7 +10,6 @@ dependencies {
api(project(":kotlin-scripting-common"))
testApi(commonDependency("junit"))
testImplementation(commonDependency("org.jetbrains.kotlinx", "kotlinx-coroutines-core"))
kotlinCompilerClasspath(project(":libraries:tools:stdlib-compiler-classpath"))
}
sourceSets {
-1
View File
@@ -10,7 +10,6 @@ dependencies {
api(kotlinStdlib())
api(project(":kotlin-scripting-common"))
testApi(commonDependency("junit"))
kotlinCompilerClasspath(project(":libraries:tools:stdlib-compiler-classpath"))
}
sourceSets {