diff --git a/compiler/tests-common-jvm6/build.gradle.kts b/compiler/tests-common-jvm6/build.gradle.kts index 642f111e36c..1498593c571 100644 --- a/compiler/tests-common-jvm6/build.gradle.kts +++ b/compiler/tests-common-jvm6/build.gradle.kts @@ -8,7 +8,7 @@ jvmTarget = "1.6" dependencies { compile(project(":kotlin-stdlib")) - testCompile(project(":kotlin-test:kotlin-test-jvm")) + testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) } sourceSets { diff --git a/compiler/tests-common/build.gradle.kts b/compiler/tests-common/build.gradle.kts index 6a469f7008f..6fb1115857d 100644 --- a/compiler/tests-common/build.gradle.kts +++ b/compiler/tests-common/build.gradle.kts @@ -24,7 +24,7 @@ dependencies { testCompile(project(":js:js.frontend")) testCompile(project(":js:js.translator")) testCompileOnly(project(":plugins:android-extensions-compiler")) - testCompile(project(":kotlin-test:kotlin-test-jvm")) + testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(projectTests(":compiler:tests-common-jvm6")) testCompileOnly(project(":kotlin-reflect-api")) testCompile(commonDep("junit:junit"))