From 7155c5c0be0b30baf737dcd748de2fa5be56afe1 Mon Sep 17 00:00:00 2001 From: Vyacheslav Gerasimov Date: Mon, 17 Dec 2018 16:17:07 +0300 Subject: [PATCH] 173: Remove obsolete bunch file for idea-gradle/build.gradle.kts --- idea/idea-gradle/build.gradle.kts.173 | 76 --------------------------- 1 file changed, 76 deletions(-) delete mode 100644 idea/idea-gradle/build.gradle.kts.173 diff --git a/idea/idea-gradle/build.gradle.kts.173 b/idea/idea-gradle/build.gradle.kts.173 deleted file mode 100644 index bb3e777f93a..00000000000 --- a/idea/idea-gradle/build.gradle.kts.173 +++ /dev/null @@ -1,76 +0,0 @@ -plugins { - kotlin("jvm") - id("jps-compatible") -} - -dependencies { - testRuntime(intellijDep()) - - compileOnly(project(":idea")) - compileOnly(project(":idea:idea-jvm")) - compile(project(":idea:kotlin-gradle-tooling")) - - compile(project(":compiler:frontend")) - compile(project(":compiler:frontend.java")) - compile(project(":compiler:frontend.script")) - - compile(project(":js:js.frontend")) - - compileOnly(intellijDep()) - compileOnly(intellijPluginDep("gradle")) - compileOnly(intellijPluginDep("Groovy")) - compileOnly(intellijPluginDep("junit")) - compileOnly(intellijPluginDep("testng")) - - testCompile(projectTests(":idea")) - testCompile(projectTests(":idea:idea-test-framework")) - - testCompile(intellijPluginDep("gradle")) - testCompileOnly(intellijPluginDep("Groovy")) - testCompileOnly(intellijDep()) - - testCompile(project(":idea:idea-native")) { isTransitive = false } - testCompile(project(":idea:idea-gradle-native")) { isTransitive = false } - testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false } - testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false } - - testRuntime(project(":kotlin-reflect")) - testRuntime(project(":idea:idea-jvm")) - testRuntime(project(":idea:idea-android")) - testRuntime(project(":plugins:kapt3-idea")) - testRuntime(project(":plugins:android-extensions-ide")) - testRuntime(project(":plugins:lint")) - testRuntime(project(":sam-with-receiver-ide-plugin")) - testRuntime(project(":allopen-ide-plugin")) - testRuntime(project(":noarg-ide-plugin")) - testRuntime(project(":kotlin-scripting-idea")) - testRuntime(project(":kotlinx-serialization-ide-plugin")) - // TODO: the order of the plugins matters here, consider avoiding order-dependency - testRuntime(intellijPluginDep("junit")) - testRuntime(intellijPluginDep("testng")) - testRuntime(intellijPluginDep("properties")) - testRuntime(intellijPluginDep("gradle")) - testRuntime(intellijPluginDep("Groovy")) - testRuntime(intellijPluginDep("coverage")) - if (Ide.IJ()) { - testRuntime(intellijPluginDep("maven")) - } - testRuntime(intellijPluginDep("android")) -} - -sourceSets { - "main" { - projectDefault() - resources.srcDir("res") - } - "test" { projectDefault() } -} - -testsJar() - -projectTest { - workingDir = rootDir - useAndroidSdk() -} - -configureInstrumentation()