src/integrationTest/resources/multi-plugin/plugin1/build.gradle.kts [3:27]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - val intellijPlatformTypeProperty = providers.gradleProperty("intellijPlatform.type") val intellijPlatformVersionProperty = providers.gradleProperty("intellijPlatform.version") plugins { id("org.jetbrains.intellij.platform") } repositories { mavenCentral() intellijPlatform { defaultRepositories() } } dependencies { intellijPlatform { create(intellijPlatformTypeProperty, intellijPlatformVersionProperty) bundledPlugin("com.intellij.java") } } intellijPlatform { buildSearchableOptions = false instrumentCode = false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - src/integrationTest/resources/multi-plugin/plugin2/build.gradle.kts [3:27]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - val intellijPlatformTypeProperty = providers.gradleProperty("intellijPlatform.type") val intellijPlatformVersionProperty = providers.gradleProperty("intellijPlatform.version") plugins { id("org.jetbrains.intellij.platform") } repositories { mavenCentral() intellijPlatform { defaultRepositories() } } dependencies { intellijPlatform { create(intellijPlatformTypeProperty, intellijPlatformVersionProperty) bundledPlugin("com.intellij.java") } } intellijPlatform { buildSearchableOptions = false instrumentCode = false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -