eclipse - Tycho build error: "... requires bundle ... but it could not be found" -
we have eclipse luna plugin application we're trying build tycho. when try mvn clean verify, we're getting type of message:
[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' not found when @ logs appears eclipse plugin required give error, , merely first item in list on manifest.mf plugin being verified.
i have looked @ other questions, none of them seem address particular issue. suggestions appreciated.
manifest.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
i similar error if remove <repository>-tag pom. without information tycho not know download required packages. therefore have add following snippet pom:
<repository> <id>eclipse-indigo</id> <url>http://download.eclipse.org/releases/indigo</url> <layout>p2</layout> </repository>
Comments
Post a Comment