From b4066890357385dd9e567590c532f9965ebe8922 Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Sat, 19 Jun 2021 16:02:53 +0300 Subject: [PATCH] Re-enable ":compiler:android-tests" module --- compiler/android-tests/build.gradle.kts | 3 ++- settings.gradle | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/compiler/android-tests/build.gradle.kts b/compiler/android-tests/build.gradle.kts index 8aff4680bf4..ff2ebe34d13 100644 --- a/compiler/android-tests/build.gradle.kts +++ b/compiler/android-tests/build.gradle.kts @@ -24,7 +24,6 @@ dependencies { testApi(projectTests(":compiler:tests-compiler-utils")) testApi(projectTests(":compiler:tests-common-new")) - testCompile(projectTests(":jps-plugin")) testCompile(commonDep("junit:junit")) testCompile(intellijDep()) { includeJars("util", "idea", "idea_rt", rootProject = rootProject) } @@ -34,6 +33,8 @@ dependencies { testCompile(jpsStandalone()) { includeJars("jps-model") } testCompile(jpsBuildTest()) + testRuntimeOnly(compile(intellijCoreDep()) { includeJars("intellij-core") }) + testCompile("org.junit.platform:junit-platform-launcher:${commonVer("org.junit.platform", "")}") } diff --git a/settings.gradle b/settings.gradle index d9671940be8..1fe6da191d5 100644 --- a/settings.gradle +++ b/settings.gradle @@ -476,7 +476,6 @@ if (!buildProperties.getBoolean("disableKotlinPluginModules", false) && attached ":idea:idea-frontend-fir:fir-low-level-api-ide-impl", ":idea:idea-fir-performance-tests", ":plugins:lint", // TODO will this module be removed with other IDE modules? - ":compiler:android-tests", // TODO will this module be removed with other IDE modules? ":plugins:android-extensions-ide", // TODO will this module be removed with other IDE modules? ":prepare:ide-lazy-resolver", // TODO will this module be removed with other IDE modules? ":prepare:idea-plugin", // TODO will this module be removed with other IDE modules? @@ -549,6 +548,7 @@ if (buildProperties.inJpsBuildIdeaSync) { project(':kotlin-test:kotlin-test-js-ir').projectDir = "$rootDir/libraries/kotlin.test/js-ir" as File project(':kotlin-test:kotlin-test-js:kotlin-test-js-it').projectDir = "$rootDir/libraries/kotlin.test/js/it" as File } +include ":compiler:android-tests" rootProject.name = "kotlin"