IDEA插件开发(11)---插件配置文件
Posted 流子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IDEA插件开发(11)---插件配置文件相关的知识,希望对你有一定的参考价值。
以下是一个示例插件配置文件。此示例展示并描述了可在plugin.xml文件中使用的所有元素。有关配置的更多信息,请参见第 II 部分的“操作”部分。
和元素中允许使用有限的 html元素。但是,包含 HTML 元素的内容必须被<![CDATA[ ]]>标签包围。允许的 HTML 元素包括文本格式、段落和列表。
使用 Gradle 时,将在构建时按patchPluginXml任务提供许多元数据元素。
请确保遵循插件概述页面中的指南,以便在 JetBrains Marketplace 上以最佳方式展示您的插件。
该网络研讨会还讨论了优化 JetBrains Marketplace 插件页面的 5 个技巧
另请参阅有关小部件和徽章的营销。
com.example.myplugin
My Framework Support
1.0.0
My Company
<![CDATA[ Provides support for My Framework.Includes support for:
- code completion
- references
- refactoring
Initial release of the plugin.
com.intellij.modules.platform
com.example.third-party-plugin
com.example.my-second-plugin
messages.MyPluginBundle
com.example.Component1Interface com.example.impl.Component1Impl com.example.Component2 <!--
If the "workspace" option is set "true", the component saves its state
to the .iws file instead of the .ipr file. Note that the <option>
element is used only if the component implements the
JDOMExternalizable interface. Otherwise, the use of the <option>
element takes no effect.
-->
<option name="workspace" value="true"/>
<!--
If the "loadForDefaultProject" tag is present, the project component
is instantiated also for the default project.
-->
<loadForDefaultProject/>
</component>
com.example.Component3以上是关于IDEA插件开发(11)---插件配置文件的主要内容,如果未能解决你的问题,请参考以下文章
IDEA 开发插件,插件依赖|文件路径转VirtualFile 遇坑随笔