Avoid building kotlin-compiler-embeddable before running idea tests
kotlin-compiler-embeddable is a runtimeOnly dependency of kotlin-compiler-runner, so embeddable jar was built before idea tests execution. Building the jar takes ~20s on my machine, which is a waste of time since idea does not use embeddable compiler.
This commit is contained in:
@@ -18,7 +18,9 @@ dependencies {
|
||||
compile(project(":js:js.serializer"))
|
||||
compile(project(":compiler:light-classes"))
|
||||
compile(project(":compiler:util"))
|
||||
compile(project(":kotlin-compiler-runner"))
|
||||
compile(project(":kotlin-build-common"))
|
||||
compile(project(":compiler:daemon-common"))
|
||||
compile(project(":kotlin-compiler-runner")) { isTransitive = false }
|
||||
compile(project(":compiler:plugin-api"))
|
||||
compile(project(":eval4j"))
|
||||
compile(project(":j2k"))
|
||||
|
||||
Reference in New Issue
Block a user