Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] Error building eclipse RCP application with GMF Dependencies

I am utilizing Eclipse Tycho to build my RCP application with GMF dependencies. 

I am getting the following error -

    [ERROR] Internal error: java.lang.RuntimeException: Could not download artifacts from any repository
    [ERROR] osgi.bundle,org.eclipse.gmf.runtime.emf.core,1.4.1.v20120514-1615
    [ERROR] osgi.bundle,org.eclipse.gmf.runtime.emf.commands.core,1.4.0.v20120514-1615
    [ERROR] osgi.bundle,org.eclipse.gmf.runtime.emf.ui.properties,1.5.0.v20120514-1615
    [ERROR] osgi.bundle,org.eclipse.gmf.runtime.diagram.ui,1.6.0.v20120514-1615
    [ERROR] osgi.bundle,org.eclipse.gmf.runtime.diagram.ui.properties,1.4.2.v20120514-1615
    [ERROR] osgi.bundle,org.eclipse.gmf.runtime.diagram.ui.providers,1.5.0.v20120514-1615
    [ERROR] osgi.bundle,org.eclipse.gmf.runtime.diagram.ui.providers.ide,1.2.0.v20120514-1615
    [ERROR] osgi.bundle,org.eclipse.gmf.runtime.diagram.ui.render,1.6.0.v20120514-1615
    [ERROR] osgi.bundle,org.eclipse.gmf.runtime.diagram.ui.resources.editor,1.4.1.v20120514-1615
    [ERROR] osgi.bundle,org.eclipse.gmf.runtime.diagram.ui.resources.editor.ide,1.2.1.v20120514-1615

I am specifing the following dependency in the Manifest.MF -


    org.eclipse.gmf.runtime.emf.core;bundle-version="1.4.1",
     org.eclipse.gmf.runtime.emf.commands.core;bundle-version="1.4.0",
     org.eclipse.gmf.runtime.emf.ui.properties;bundle-version="1.5.0",
     org.eclipse.gmf.runtime.diagram.ui;bundle-version="1.6.0",
     org.eclipse.gmf.runtime.diagram.ui.properties;bundle-version="1.4.2",
     org.eclipse.gmf.runtime.diagram.ui.providers;bundle-version="1.5.0",
     org.eclipse.gmf.runtime.diagram.ui.providers.ide;bundle-version="1.2.0",
     org.eclipse.gmf.runtime.diagram.ui.render;bundle-version="1.6.0",
     org.eclipse.gmf.runtime.lite.svg;bundle-version="1.0.0",
     org.eclipse.gmf.runtime.diagram.ui.resources.editor;bundle-version="1.4.1",
     org.eclipse.gmf.runtime.diagram.ui.resources.editor.ide;bundle-version="1.2.1",

I have provided the repository location for GMF bundle as -


    <repository>
      <id>gmf-runtime</id>
      <url>http://download.eclipse.org/modeling/gmp/gmf-runtime/updates/releases</url>
      <layout>p2</layout>
    </repository>

The P2 repository has all the above JAR's. The only difference is that for some reason Tycho is looking for **.v20120514-1615** qualifier. However the P2 repository has **.201302191707** qualifier. Not sure why Tycho is looking for that specific qualifier and not resolve to the latest version.

Any help will be appreciated.

Back to the top