我需要 org.eclipse.equinox.executable.3.4.1 功能 jar 专门用于创建我的 eclipse 插件产品。
我正在使用 Buckminster 来解决依赖关系。在我的功能中,我指定了 3.4.1 版本,以便能够仅查询该版本的存储库。我的rmap如下。
<searchPath name="target.platform.online">
<provider componentTypes="eclipse.feature,osgi.bundle"
readerType="p2" source="false" mutable="false">
<uri format="http://download.eclipse.org/releases/helios" />
</provider>
<provider componentTypes="eclipse.feature,osgi.bundle"
readerType="p2" source="false" mutable="false">
<uri format="http://download.eclipse.org/eclipse/updates/3.6" />
</provider>
</searchPath>
当没有提供特定版本时,使用存储库http://download.eclipse.org/releases/helios提供 3.4.2。对于特定的 3.4.1 版本,依赖解析以错误结束,因为在存储库中找不到 3.4.1。在哪里可以找到版本 3.4.1,或者如果它们也存在于同一个存储库中,需要什么样的配置才能查询旧版本?
更新:我找不到包含 3.4.1 版本的更新站点,但在 Equinox下载页面版本 3.6.1 下包含 org.eclipse.equinox.executable 功能版本 3.4.1。
知道哪个 Eclipse 更新站点包含此功能将非常有帮助。