diff --git a/idea/build.gradle.kts b/idea/build.gradle.kts index 5fa5ec538a3..292217ebd95 100644 --- a/idea/build.gradle.kts +++ b/idea/build.gradle.kts @@ -115,7 +115,6 @@ dependencies { testCompileOnly(intellijPluginDep("coverage")) testRuntimeOnly(toolsJar()) - testRuntime(project(":native:kotlin-native-utils")) { isTransitive = false } testRuntime(commonDep("org.jetbrains", "markdown")) testRuntime(project(":plugins:kapt3-idea")) { isTransitive = false } testRuntime(project(":kotlin-reflect")) diff --git a/idea/idea-android/build.gradle.kts b/idea/idea-android/build.gradle.kts index 3e493d71d3f..a6f24dfd45e 100644 --- a/idea/idea-android/build.gradle.kts +++ b/idea/idea-android/build.gradle.kts @@ -35,8 +35,7 @@ dependencies { testCompile(project(":idea:idea-native")) { isTransitive = false } testCompile(project(":idea:idea-gradle-native")) { isTransitive = false } - testRuntime(project(":native:frontend.native")) { isTransitive = false } - testRuntime(project(":native:kotlin-native-utils")) { isTransitive = false } + testRuntime(project(":native:frontend.native")) testCompile(intellijDep()) testCompile(intellijPluginDep("properties")) diff --git a/idea/idea-fir/build.gradle.kts b/idea/idea-fir/build.gradle.kts index 8f14fbc0db5..dc0bf143edf 100644 --- a/idea/idea-fir/build.gradle.kts +++ b/idea/idea-fir/build.gradle.kts @@ -23,7 +23,6 @@ dependencies { } testRuntime(intellijRuntimeAnnotations()) - testRuntime(project(":native:kotlin-native-utils")) { isTransitive = false } testRuntime(project(":plugins:kapt3-idea")) { isTransitive = false } testRuntime(project(":kotlin-reflect")) testRuntime(project(":kotlin-preloader")) diff --git a/idea/idea-gradle/build.gradle.kts b/idea/idea-gradle/build.gradle.kts index 84ebb34b915..66b0418b6b3 100644 --- a/idea/idea-gradle/build.gradle.kts +++ b/idea/idea-gradle/build.gradle.kts @@ -8,7 +8,7 @@ dependencies { compileOnly(project(":idea")) compileOnly(project(":idea:idea-jvm")) - compileOnly(project(":idea:idea-native")) { isTransitive = false } + compileOnly(project(":idea:idea-native")) compile(project(":idea:kotlin-gradle-tooling")) Platform[193].orLower { compile(project(":idea:idea-gradle-tooling-api")) @@ -19,7 +19,7 @@ dependencies { compile(project(":js:js.frontend")) - compile(project(":native:kotlin-native-utils")) { isTransitive = false } + compile(project(":native:frontend.native")) compileOnly(intellijDep()) compileOnly(intellijPluginDep("gradle")) @@ -51,8 +51,6 @@ dependencies { testCompile(project(":idea:idea-native")) { isTransitive = false } testCompile(project(":idea:idea-gradle-native")) { isTransitive = false } - testRuntime(project(":native:frontend.native")) { isTransitive = false } - testRuntime(project(":native:kotlin-native-utils")) { isTransitive = false } if (Ide.IJ()) { testRuntime(project(":idea:idea-new-project-wizard")) } diff --git a/idea/idea-maven/build.gradle.kts b/idea/idea-maven/build.gradle.kts index 301201406d4..4ca60cc500a 100644 --- a/idea/idea-maven/build.gradle.kts +++ b/idea/idea-maven/build.gradle.kts @@ -42,8 +42,7 @@ dependencies { } testCompile(project(":idea:idea-native")) { isTransitive = false } - testRuntime(project(":native:frontend.native")) { isTransitive = false } - testRuntime(project(":native:kotlin-native-utils")) { isTransitive = false } + testRuntime(project(":native:frontend.native")) testRuntimeOnly(toolsJar()) testRuntime(project(":kotlin-reflect")) diff --git a/idea/jvm-debugger/jvm-debugger-test/build.gradle.kts b/idea/jvm-debugger/jvm-debugger-test/build.gradle.kts index 2671894f99c..68217a69605 100644 --- a/idea/jvm-debugger/jvm-debugger-test/build.gradle.kts +++ b/idea/jvm-debugger/jvm-debugger-test/build.gradle.kts @@ -32,8 +32,7 @@ dependencies { testRuntime(project(":idea:idea-jvm")) testRuntime(project(":idea:idea-native")) { isTransitive = false } testRuntime(project(":idea:idea-gradle-native")) { isTransitive = false } - testRuntime(project(":native:frontend.native")) { isTransitive = false } - testRuntime(project(":native:kotlin-native-utils")) { isTransitive = false } + testRuntime(project(":native:frontend.native")) testRuntime(project(":kotlin-reflect")) testRuntime(project(":sam-with-receiver-ide-plugin")) diff --git a/j2k/build.gradle.kts b/j2k/build.gradle.kts index d4360d1e6a0..b41e79c6c4e 100644 --- a/j2k/build.gradle.kts +++ b/j2k/build.gradle.kts @@ -33,8 +33,7 @@ dependencies { testCompile(project(":idea:idea-gradle-native")) { isTransitive = false } testRuntimeOnly(toolsJar()) - testRuntime(project(":native:frontend.native")) { isTransitive = false } - testRuntime(project(":native:kotlin-native-utils")) { isTransitive = false } + testRuntime(project(":native:frontend.native")) testRuntime(project(":plugins:kapt3-idea")) { isTransitive = false } testRuntime(project(":idea:idea-jvm")) testRuntime(project(":idea:idea-android")) diff --git a/plugins/android-extensions/android-extensions-idea/build.gradle.kts b/plugins/android-extensions/android-extensions-idea/build.gradle.kts index 3ee330074cb..e6f9ac8860c 100644 --- a/plugins/android-extensions/android-extensions-idea/build.gradle.kts +++ b/plugins/android-extensions/android-extensions-idea/build.gradle.kts @@ -34,8 +34,7 @@ dependencies { testCompile(commonDep("junit:junit")) testCompile(project(":idea:idea-native")) { isTransitive = false } testCompile(project(":idea:idea-gradle-native")) { isTransitive = false } - testRuntime(project(":native:frontend.native")) { isTransitive = false } - testRuntime(project(":native:kotlin-native-utils")) { isTransitive = false } + testRuntime(project(":native:frontend.native")) testRuntime(project(":kotlin-reflect")) testCompile(intellijPluginDep("android")) testCompile(intellijPluginDep("Groovy")) diff --git a/plugins/uast-kotlin/build.gradle.kts b/plugins/uast-kotlin/build.gradle.kts index afb8b674252..03a0fddf8f5 100644 --- a/plugins/uast-kotlin/build.gradle.kts +++ b/plugins/uast-kotlin/build.gradle.kts @@ -39,8 +39,7 @@ dependencies { testCompile(project(":idea:idea-gradle-native")) { isTransitive = false } testRuntimeOnly(toolsJar()) - testRuntime(project(":native:frontend.native")) { isTransitive = false } - testRuntime(project(":native:kotlin-native-utils")) { isTransitive = false } + testRuntime(project(":native:frontend.native")) testRuntime(project(":kotlin-reflect")) testRuntime(project(":idea:idea-android")) testRuntime(project(":idea:idea-gradle"))