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
@@ -7,7 +7,6 @@ JvmToolchain.updateJvmTarget(project, "1.6")
dependencies {
api kotlinStdlib("common")
testApi project(":kotlin-test:kotlin-test-annotations-common")
kotlinCompilerClasspath project(':libraries:tools:stdlib-compiler-classpath')
}
jar {
-1
View File
@@ -16,7 +16,6 @@ dependencies {
expectedBy project(':kotlin-test:kotlin-test-annotations-common')
api project(':kotlin-test:kotlin-test-jvm')
api('junit:junit:4.13.2')
kotlinCompilerClasspath(project(':libraries:tools:stdlib-compiler-classpath'))
}
-1
View File
@@ -19,7 +19,6 @@ dependencies {
api(kotlinStdlib())
testApi(project(":kotlin-test:kotlin-test-junit"))
testApi('junit:junit:4.13.2')
kotlinCompilerClasspath(project(':libraries:tools:stdlib-compiler-classpath'))
}
jar {
@@ -20,7 +20,6 @@ dependencies {
if (includeJava9) {
java9CompileOnly('org.testng:testng:7.0.0')
}
kotlinCompilerClasspath project(':libraries:tools:stdlib-compiler-classpath')
}
jar {