我正在用tycho编译一个基于eclipse的产品,而且我有一个错误编译,我不知道如何解决。
我的错误代码是:
[ERROR] Cannot resolve project dependencies:
[ERROR] Software being installed: eu.geeking.gds.feature.group 1.0.0.qualifier
[ERROR] Missing requirement: eu.geeking.gds.feature.group 1.0.0.qualifier requires 'org.eclipse.equinox.p2.iu; dev.geeking.gds.toolchain.cortexm 0.0.0' but it could not be found
在https://wiki.eclipse.org/Tycho/Dependency_Resolution_Troubleshooting中next说:
Missing requirement: <artifact> requires '<dependency>' but it could not be found.
This line prints one of the mandatory dependencies which cannot be resolved. This can either be a dependency of the seed artifact, or a dependency of an artifact which is a direct or transitive dependency of the seed artifact. See below for details on the <dependency> part of the message.
但我的信息是
"Missing requirement: <artifact> requires '<dependency>'; <plugin-name> but it could not be found."
我理解插件'dev.geeking.gds.toolchain.cortexm‘需要org.eclipse.equinox.p2.iu的依赖性,但我找不到它。我写过'dev.geeking.gds.toolchain.cortexm‘插件,我在eclipse中没有任何关于'org.eclipse.equinox.p2.iu’的错误,我不知道如何修复它。
发布于 2019-11-09 03:04:12
努布错误。
错误是模块dev.geeking.gds.toolchain.cortexm
没有在pom.xml的模块部分声明,tycho找不到这个插件。
<modules>
<module>dev.geeking.gds.toolchain.cortexm</module>
</modules>
谢谢你们!
https://stackoverflow.com/questions/58680290
复制