From 42d9c5b9322bc4835f7e71b2ae12c10057e4915b Mon Sep 17 00:00:00 2001 From: Denis Zharkov Date: Fri, 6 Apr 2018 20:31:42 +0300 Subject: [PATCH] Remove dependency on :kotlin-test:kotlin-test-jvm from tests-common #KT-20897 Fixed --- compiler/tests-common-jvm6/build.gradle.kts | 2 +- compiler/tests-common/build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"))