diff --git a/topics/basics/plugin_structure/plugin_dependencies.md b/topics/basics/plugin_structure/plugin_dependencies.md index 52aaeab4b..482b49d9f 100644 --- a/topics/basics/plugin_structure/plugin_dependencies.md +++ b/topics/basics/plugin_structure/plugin_dependencies.md @@ -47,19 +47,27 @@ For plugins published on [JetBrains Marketplace](https://plugins.jetbrains.com): ### Bundled and Other Plugins +All IDs of bundled plugins can be gathered using a dedicated Gradle task. +See _Other_ tab on how to locate the plugin ID for a plugin distribution file. + - + -When using [Gradle IntelliJ Plugin](developing_plugins.md), all bundled plugin IDs can be gathered using [`listBundledPlugins`](tools_gradle_intellij_plugin.md#tasks-listbundledplugins) task. - -For [](tools_intellij_platform_gradle_plugin.md), use [`printBundledPlugins`](tools_intellij_platform_gradle_plugin_tasks.md#printBundledPlugins) task. +Use [`printBundledPlugins`](tools_intellij_platform_gradle_plugin_tasks.md#printBundledPlugins) task. - + + +Use [`listBundledPlugins`](tools_gradle_intellij_plugin.md#tasks-listbundledplugins) task. + + + + + +Locate the plugin's main JAR file containing META-INF/plugin.xml descriptor with [``](plugin_configuration_file.md#idea-plugin__id) tag (use [``](plugin_configuration_file.md#idea-plugin__name) if `` is not specified). -When using [DevKit](developing_themes.md) and for non-public plugins, locate the plugin's main JAR file containing META-INF/plugin.xml descriptor with [``](plugin_configuration_file.md#idea-plugin__id) tag (or [``](plugin_configuration_file.md#idea-plugin__name) if not specified). Bundled plugins are located in \$PRODUCT_ROOT\$/plugins/\$PLUGIN_NAME\$/lib/\$PLUGIN_NAME\$.jar.