我已经为Intellij Idea创建了自己的Run配置,但我找不到任何关于如何将此运行配置捆绑为新插件的手册。 有人有简单的例子吗?
谢谢。
答案 0 :(得分:0)
似乎是我回答的人。
对于运行配置,我发现的最佳信息来源是
Tomcat runner插件
。 对于插件运行 - 您需要在插件xml中添加:
<extensions defaultExtensionNs="com.intellij">
<!-- Initialises the UI when the user selects the plugin from the menu -->
<configurationType implementation="com.something.<PluginName>ConfigurationType"/>
<!-- Run - It reads the values written by the UI and runs maven job -->
<programRunner implementation="com.something.<PluginName>Runner"/>
</extensions>