我有一个RCP应用程序,该应用程序基于Eclipse 4.5.2和4.6.3构建;今天我试图升级到Eclipse 2019-6; 当我尝试使用Maven来展示产品时(MVN全新安装)
我得到以下输出:
...
class Address(HtmlTag):
"""Defines contact information for the author/owner of a document"""
pass
class Applet(HtmlTag):
"""Not supported in HTML5. Use <embed> or <object> instead."""
pass
class Area(SelfClosingHtmlTag):
"""Defines an area inside an image-map"""
pass
...
因此,所有捆绑包均可成功构建,但该产品却无法成功构建! 指的是:org.eclipse.equinox.p2.iu
根据定义,我同时需要org.eclipse.rcp和org.eclipse.e4.rcp。这会导致此错误
我尝试删除org.eclipse.rcp
也是org.eclipse.e4.rcp
但最终没有任何效果。
有什么办法解决此错误吗?
答案 0 :(得分:1)
您似乎对org.eclipse.equinox.ds
插件有明确的依赖性。当前版本的Eclipse删除了该插件,并用org.apache.felix.scr
插件替换了。