Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Rebuilding m2e discovery catalog

Revision as of 13:44, 27 June 2011 by Herve.boutemy.free.fr (Talk | contribs) (typo)


directory.xml

As of version 1.0.0 m2e discovery catalog URL is http://download.eclipse.org/technology/m2e/discovery/directory.xml. It is hardcoded in org.eclipse.m2e.internal.discovery.MavenDiscovery.PATH found in o.e.m2e.discovery bundle. discovery.xml can be changed from dev.eclipse.org or build.eclipse.org as ~/downloads/technology/m2e/discovery/directory.xml. It is not necessary to change discovery.xml unless you want to relocate or block catalog.

m2e discovery catalog

As of version 1.0.0 m2e discovery catalog content is hosted at https://repository.sonatype.org/content/repositories/forge-sites/m2e-discovery-catalog/. This repository is generated by m2e discovery catalog publishing job https://builds.sonatype.org/view/m2eclipse/job/m2eclipse-catalog/ and contains

  • catalog entry jar referenced from discovery.xml
  • p2 repository that includes catalog items retrieved from Maven repositories

The job execution has to be triggered manually and requires access to Sonatype build infrastructure.

updating m2e discovery catalog

First, clone git repository with catalog sources

 git clone ssh://ECLIPSE_COMMITTER_ID@git.eclipse.org/gitroot/m2e/m2e-discovery-catalog.git

Catalog contents is defined in org.eclipse.m2e.discovery.oss/connectors.xml. Make, commit and push your changes.

Run m2e discovery catalog publishing job https://builds.sonatype.org/view/m2eclipse/job/m2eclipse-catalog/

Back to the top