From abd86107d1b943d33854dffcc9d3f1ba6baa8d22 Mon Sep 17 00:00:00 2001 From: Dmitriy Dolovov Date: Wed, 29 Jan 2020 15:54:26 +0700 Subject: [PATCH] Include :native:frontend.native into kotlin-compiler.jar --- build.gradle.kts | 1 + idea/build.gradle.kts | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index ece204abfd7..d2796857047 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -238,6 +238,7 @@ extra["compilerModules"] = arrayOf( ":js:js.frontend", ":js:js.translator", ":js:js.dce", + ":native:frontend.native", ":compiler", ":kotlin-build-common", ":core:metadata", diff --git a/idea/build.gradle.kts b/idea/build.gradle.kts index dc9f1b69540..5bd131f59a3 100644 --- a/idea/build.gradle.kts +++ b/idea/build.gradle.kts @@ -128,7 +128,6 @@ dependencies { testCompile(commonDep("junit:junit")) testCompileOnly(intellijPluginDep("coverage")) - testRuntime(project(":native:frontend.native")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false } testRuntime(commonDep("org.jetbrains", "markdown"))