gpt4 book ai didi

eclipse - 第谷构建错误 : "... requires bundle ... but it could not be found"

转载 作者:行者123 更新时间:2023-12-04 18:05:09 28 4
gpt4 key购买 nike

我们有一个 eclipse Luna 插件应用程序,我们正试图用 Tycho 构建它。当我们尝试做一个 mvn clean verify ,我们收到这样的消息:

[ERROR]  Cannot resolve project dependencies:
[ERROR] Software being installed: our.app 1.0.0.qualifier
[ERROR] Missing requirement: our.app 1.0.0.qualifier requires 'bundle org.eclipse.core.runtime 3.7.0' but it could not be found

当我们查看日志时,似乎需要的任何 Eclipse 插件都会给我们这个错误,而且这只是 MANIFEST.MF 列表中正在验证的插件的第一项。

我查看了其他问题,但似乎没有一个解决这个特定问题。任何建议将不胜感激。

list .MF:
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Our App
Bundle-SymbolicName: our.app;singleton:=true
Built-By: Our Team (2014)
Bundle-ClassPath: .,
<some jars>
Bundle-Vendor: Our Team
Require-Bundle: org.eclipse.core.runtime;bundle-version="3.7.0",
org.eclipse.ui;bundle-version="3.7.0",
org.eclipse.ui.ide;bundle-version="3.7.0",
org.eclipse.core.resources;bundle-version="3.7.0",
org.eclipse.ui.forms;bundle-version="3.6.0",
org.eclipse.wst.sse.ui;bundle-version="1.3.0",
org.eclipse.jface.text;bundle-version="3.8.100",
org.eclipse.ui.workbench.texteditor;bundle-version="3.8.101",
org.eclipse.ui.views;bundle-version="3.6.0"
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-Version: 1.0.0.qualifier

最佳答案

如果我删除 <repository>,我会收到类似的错误-来自pom的标签。
没有这些信息,第谷不知道从哪里下载所需的包。
因此,您必须将以下代码段添加到您的 pom 中:

<repository>
<id>eclipse-indigo</id>
<url>http://download.eclipse.org/releases/indigo</url>
<layout>p2</layout>
</repository>

我从 here 复制了片段,欲了解更多信息,请看 here .

关于eclipse - 第谷构建错误 : "... requires bundle ... but it could not be found",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30629469/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com