plugin_configuration_file.md: note about plugin <id> value

This commit is contained in:
Yann Cébron 2023-05-15 12:36:01 +02:00
parent f14b2cca85
commit 6d59cfe17c

View File

@ -129,9 +129,10 @@ Children
A unique identifier of the plugin. A unique identifier of the plugin.
It should be a fully qualified name similar to Java packages and must not collide with the ID of existing plugins. It should be a fully qualified name similar to Java packages and must not collide with the ID of existing plugins.
The ID is a technical value used to identify the plugin in the IDE and JetBrains Marketplace. The ID is a technical value used to identify the plugin in the IDE and [JetBrains Marketplace](https://plugins.jetbrains.com).
Please use characters, numbers, and `'.'`/`'-'`/`'_'` symbols only and keep it reasonably short.
**The identifier value cannot be changed between the plugin versions.** **Make sure to pick a stable ID, as the value cannot be changed between the plugin versions.**
{style="narrow"} {style="narrow"}
Required Required
@ -145,7 +146,7 @@ Default value
Example Example
: :
```xml ```xml
<id>com.example.myframeworksupport</id> <id>com.company.framework</id>
``` ```
### `name` ### `name`