From 43f89a24a6ac8e547afb00860025a0357d748c42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Mon, 29 Jul 2024 14:14:19 +0200 Subject: [PATCH] plugin_dependencies.md: Gradle 1.x/2.x --- .../plugin_structure/plugin_dependencies.md | 20 +++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) 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.