mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
warning about repackaging libraries in plugin distribution
This commit is contained in:
parent
a2bdce0d56
commit
573f7be073
@ -11,6 +11,11 @@ See also [](marketing.md) about widgets and badges.
|
|||||||
|
|
||||||
> If you plan to publish your plugin to a repository _other than_ the [JetBrains Marketplace](https://plugins.jetbrains.com), please refer to the [](custom_plugin_repository.md) documentation.
|
> If you plan to publish your plugin to a repository _other than_ the [JetBrains Marketplace](https://plugins.jetbrains.com), please refer to the [](custom_plugin_repository.md) documentation.
|
||||||
|
|
||||||
|
> If your plugin ships with [additional libraries](plugin_content.md#plugin-with-dependencies), do not repackage them into the main plugin archive.
|
||||||
|
> Otherwise, [Plugin Verifier](verifying_plugin_compatibility.md) will yield false positives for unresolved classes and methods.
|
||||||
|
>
|
||||||
|
{type="warning"}
|
||||||
|
|
||||||
## Uploading a Plugin to JetBrains Marketplace
|
## Uploading a Plugin to JetBrains Marketplace
|
||||||
|
|
||||||
Before publishing your plugin, make sure it is signed.
|
Before publishing your plugin, make sure it is signed.
|
||||||
|
@ -30,6 +30,11 @@ The plugin <path>.jar</path> file is placed in the <path>/lib</path> folder unde
|
|||||||
|
|
||||||
All jars from the <path>/lib</path> folder are automatically added to the classpath (see also [Plugin Class Loaders](plugin_class_loaders.md)).
|
All jars from the <path>/lib</path> folder are automatically added to the classpath (see also [Plugin Class Loaders](plugin_class_loaders.md)).
|
||||||
|
|
||||||
|
> Do not repackage libraries into the main plugin archive (<path>sample.jar</path> in the sample below).
|
||||||
|
> Otherwise, [Plugin Verifier](verifying_plugin_compatibility.md) will yield false positives for unresolved classes and methods.
|
||||||
|
>
|
||||||
|
{type="warning"}
|
||||||
|
|
||||||
```text
|
```text
|
||||||
.IntelliJIDEAx0/
|
.IntelliJIDEAx0/
|
||||||
└── plugins
|
└── plugins
|
||||||
|
Loading…
x
Reference in New Issue
Block a user