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

Difference between revisions of "Rebuilding m2e discovery catalog"

m (typo)
(directory.xml)
Line 3: Line 3:
 
==== directory.xml ====
 
==== directory.xml ====
  
As of version 1.0.0 m2e discovery catalog URL is <tt>http://download.eclipse.org/technology/m2e/discovery/directory.xml</tt>. It is hardcoded in <tt>org.eclipse.m2e.internal.discovery.MavenDiscovery.PATH</tt> found in o.e.m2e.discovery bundle. discovery.xml can be changed from dev.eclipse.org or build.eclipse.org as <tt>~/downloads/technology/m2e/discovery/directory.xml</tt>. It is not necessary to change discovery.xml unless you want to relocate or block catalog.
+
m2e discovery catalog URL is hardcoded in <tt>org.eclipse.m2e.internal.discovery.MavenDiscovery.PATH</tt> found in o.e.m2e.discovery bundle. To allow discovery catalog items to be compatible with some m2e versions but not all, each minor m2e version has different URL. Specifically,
 +
 
 +
* m2e 1.0.x <tt>http://download.eclipse.org/technology/m2e/discovery/directory.xml</tt>
 +
* m2e 1.1.x <tt>http://download.eclipse.org/technology/m2e/discovery/directory-1.1.xml</tt>
 +
 
 +
discovery.xml can be changed from dev.eclipse.org or build.eclipse.org as <tt>~/downloads/technology/m2e/discovery/directory.xml</tt>. It is not necessary to change discovery.xml unless you want to relocate or block catalog.
  
 
====m2e discovery catalog====
 
====m2e discovery catalog====

Revision as of 18:00, 28 September 2011


directory.xml

m2e discovery catalog URL is hardcoded in org.eclipse.m2e.internal.discovery.MavenDiscovery.PATH found in o.e.m2e.discovery bundle. To allow discovery catalog items to be compatible with some m2e versions but not all, each minor m2e version has different URL. Specifically,

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