tools_intellij_platform_gradle_plugin_tasks.md: cleanup/remove obselete note for "signPlugin" task

This commit is contained in:
Yann Cébron 2025-04-08 13:47:36 +02:00
parent 65ae4f56d8
commit 5551d558f2

View File

@ -1292,7 +1292,7 @@ This method is no longer needed as the dependency on IntelliJ Platform is declar
## `signPlugin` ## `signPlugin`
{#signPlugin} {#signPlugin}
<link-summary>Signs the ZIP archive with the provided key using Marketplace ZIP Signer library.2</link-summary> <link-summary>Signs the plugin distribution ZIP archive with the provided key using the Marketplace ZIP Signer library.</link-summary>
<tldr> <tldr>
@ -1306,15 +1306,14 @@ This method is no longer needed as the dependency on IntelliJ Platform is declar
</tldr> </tldr>
Signs the ZIP archive with the provided key using the [Marketplace ZIP Signer](https://github.com/JetBrains/marketplace-zip-signer) library. Signs the plugin distribution ZIP archive with the provided key using the [Marketplace ZIP Signer](https://github.com/JetBrains/marketplace-zip-signer) library.
To sign the plugin before publishing to [JetBrains Marketplace](https://plugins.jetbrains.com) with the [`signPlugin`](#signPlugin) task, To sign the plugin before publishing to [JetBrains Marketplace](https://plugins.jetbrains.com) with the [`signPlugin`](#signPlugin) task,
it is required to provide a certificate chain and a private key with its password using it is required to provide a certificate chain and a private key with its password using the
[`intellijPlatform.signing`](tools_intellij_platform_gradle_plugin_extension.md#intellijPlatform-signing) extension. [`intellijPlatform.signing`](tools_intellij_platform_gradle_plugin_extension.md#intellijPlatform-signing) extension.
As soon as [`privateKey`](#signPlugin-privateKey) (or [`privateKeyFile`](#signPlugin-privateKeyFile)) and [`certificateChain`](#signPlugin-certificateChain) As soon as [`privateKey`](#signPlugin-privateKey) (or [`privateKeyFile`](#signPlugin-privateKeyFile)) and [`certificateChain`](#signPlugin-certificateChain)
(or [`certificateChainFile`](#signPlugin-certificateChainFile) properties are specified, (or [`certificateChainFile`](#signPlugin-certificateChainFile) properties are specified,
the task will be executed automatically right before the [`publishPlugin`](#publishPlugin) task. this task will be executed automatically right before the [`publishPlugin`](#publishPlugin) task.
> To start using the plugin signing feature, it is necessary to add a dependency on the Marketplace ZIP Signer CLI tool by adding the [`zipSigner()`](tools_intellij_platform_gradle_plugin_dependencies_extension.md#tools) entry to the dependencies section.
For more details, see [](plugin_signing.md). For more details, see [](plugin_signing.md).