当前位置: 代码迷 >> 综合 >> Plugin has no dependencies. Please check the documentation
  详细解决方案

Plugin has no dependencies. Please check the documentation

热度:98   发布时间:2024-02-09 18:38:31.0

在上传idea的插件的时候,一直出现提示Plugin has no dependencies. Please check the documentation。明明本地运行自己的编写的插件一切ok,但是却始终上传不上去,去看开源的插件代码发现,其实只需要一行代码。因为去网上查询也没有相关文档,特记录如下以便他人查询

在plugin.xml文件中添加

<depends>com.intellij.modules.lang</depends>

上传idea的插件的网址点击我到达:https://plugins.jetbrains.com/plugin/add#intellij。选择IDEs上传。
前提是需要自己注册,注册也很简单,使用邮箱即可。
若访问不到,可能本机hosts文件把idea的官网给屏蔽了。
上传完成之后,需要2天的审核,审核通过了,就可以搜索到。

#0.0.0.0 account.jetbrains.com
#0.0.0.0 www.jetbrains.com

在这里插入图片描述


本人写了一个小的demo,用于转换驼峰结构的简单插件:easycamelqsm。欢迎下载使用,并看看源码。


【完】

正在去往BAT的路上修行

  相关解决方案