3

我正在尝试安装一个我之前安装过几次的内部插件,但这次我收到了这些错误:

这是否意味着它与我正在使用的新 EClipse Juno 不兼容?

Cannot complete the install because one or more required items could not be found.
  Software being installed: Maven 2 Tools 2.0.1 (com.Company.engineering.maven.feature.feature.group 2.0.1)

  Missing requirement: Maven 2 Tools 2.0.1 (com.Company.engineering.maven.feature.feature.group 2.0.1) requires 'org.eclipse.platform.feature.group [3.4.0,4.0.0)' but it could not be found
4

3 回答 3

6

您的内部插件与基于 Eclipse 4.2 构建的默认 Eclipse Juno 发行版不兼容。您可以在您的插件中看到:(com.Company.engineering.maven.feature.feature.group) 从 [3.4.0, 4.0.0) 开始依赖于 Eclipse 平台。这意味着您的插件将适用于 Eclipse 3.4 到(但不包括)4.0.0。

您在这里有两个选择:

  1. 更新你的插件。Eclipse 3.x 和 4.x 之间有一个兼容层,因此您可能只需要更新依赖项中的版本范围。这假设您有权访问 com.Company.engineering.maven.feature.feature.group。

  2. 使用 Eclipse 3.8 作为基础。你可以从http://download.eclipse.org/eclipse/downloads/eclipse3x.html得到这个。但是,这将是基于 3.x 的最后一个 Eclipse 版本,因此您应该考虑尽快更新。

于 2012-09-28T18:57:47.563 回答
1

Eclipse Juno 是 Eclipse 4.2,因此与您的插件不兼容。您可以从此页面尝试 Eclipse 3.8.1 。

于 2012-09-28T16:52:04.533 回答
1

我的 Eclipse 是 4.2.2,当我使用链接“ http://download.eclipse.org/eclipse/updates/4.2 ”更新 Eclipse 时,错误消失了。

于 2014-06-06T03:36:23.927 回答