From cfbb0f1b00476979a0ba22fb1ad43e5dcc408576 Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Tue, 17 Oct 2017 14:36:23 +0200 Subject: [PATCH] Move compiler/tests-common/{src -> tests}, adjust dependencies Original commit: 33549362cb563ee8e32eb8cf32a6cf40536eb689 --- jps/jps-plugin/build.gradle.kts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jps/jps-plugin/build.gradle.kts b/jps/jps-plugin/build.gradle.kts index 4aa2ebbffed..583b4978097 100644 --- a/jps/jps-plugin/build.gradle.kts +++ b/jps/jps-plugin/build.gradle.kts @@ -12,9 +12,10 @@ dependencies { compile(projectRuntimeJar(":kotlin-preloader")) compile(project(":idea:idea-jps-common")) compile(ideaSdkDeps("jps-builders", "jps-builders-6", subdir = "jps")) - testCompile(project(":compiler:tests-common")) testCompile(project(":compiler:incremental-compilation-impl")) + testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:incremental-compilation-impl")) + testCompile(ideaSdkDeps("openapi", "idea")) testCompileOnly(ideaSdkDeps("jps-build-test", subdir = "jps/test")) testCompile(commonDep("junit:junit")) testCompile(projectDist(":kotlin-test:kotlin-test-jvm"))