Eclipse 自定义插件部署为 jar 不起作用
在运行时工作台中运行我的插件项目时没有错误,但是当我尝试将其部署为 jar (使用导出向导链接)时,创建的 jar 文件在其他标准 eclipse 版本中不起作用。我尝试将 jar 放入各种 Eclipse 安装的插件文件夹中,但没有成功。谁能告诉我问题可能是什么?
I have no errors while running my plugin project in the runtime workbench but when I try to deploy it as a jar (using Export Wizards link), the jar file created does not work in other standard eclipse versions. I have tried putting the jars in the plugins folder of various eclipse installations, but to no avail. Can anyone please tell me what the issue might be all about?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于没有功能的单个插件,您可以将部署的插件 jar 添加到 eclipse/dropins/ 文件夹中。请参阅 dropins 文件夹 了解更多信息。
For a single plugin with no feature, you can add your deployed plugin jar to the
eclipse/dropins/
folder. See the dropins folder for more information.我在这里找到了一些信息:
http://wiki.eclipse.org/Where_Is_My_Bundle
到目前为止我所做的:
允许您添加 osgi 控制台 - 安装了 pde)
(从我刚才读到的内容来看,插件也可能默默地失败,.log 文件也没有显示任何错误)
I found some information here:
http://wiki.eclipse.org/Where_Is_My_Bundle
What I have done so far:
allows you to add an osgi console - with pde installed)
(from what I read just now, a plugin can also silently fail, the .log file didn't show any errors either)