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 "Maven Tools 4 Eclipse"

(Support)
(Fixed Nexus URL, update to 0.10.0)
 
Line 3: Line 3:
 
You can find the source on http://git.eclipse.org/c/dash/org.eclipse.dash.m4e.tools.git/
 
You can find the source on http://git.eclipse.org/c/dash/org.eclipse.dash.m4e.tools.git/
  
This tool is used to create the Maven artifacts which you can find on Eclipse's [http://maven.eclipse.org/nexus/index.html Nexus server] at http://maven.eclipse.org/nexus/index.html
+
This tool is used to create the Maven artifacts which you can find on Eclipse's [http://repo.eclipse.org/ Nexus server] at http://repo.eclipse.org/
  
 
== Why Would I Want This? ==
 
== Why Would I Want This? ==
Line 24: Line 24:
 
== How it works ==
 
== How it works ==
  
Replace RUN below with <tt>java -jar org.eclipse.dash.mt4e-0.9.0-SNAPSHOT-jar-with-dependencies.jar</tt>
+
Replace RUN below with <tt>java -jar org.eclipse.dash.mt4e-0.10.0-jar-with-dependencies.jar</tt>
  
 
A simple workflow:
 
A simple workflow:
  
# Create a folder to work. [http://www.eclipse.org/downloads/download.php?file=/technology/dash/org.eclipse.dash.mt4e-0.9.0-SNAPSHOT-jar-with-dependencies.jar Download the tool] and put it into this folder.
+
# Create a folder to work. [http://www.eclipse.org/downloads/download.php?file=/technology/dash/org.eclipse.dash.mt4e-0.10.0-jar-with-dependencies.jar Download the tool] and put it into this folder.
 
# Download an Eclipse release from http://www.eclipse.org/downloads/ into a new folder <tt>downloads</tt> inside the work folder.
 
# Download an Eclipse release from http://www.eclipse.org/downloads/ into a new folder <tt>downloads</tt> inside the work folder.
 
# Download the sources for the Eclipse release and/or other archives which contain Eclipse products or OSGi bundles.
 
# Download the sources for the Eclipse release and/or other archives which contain Eclipse products or OSGi bundles.

Latest revision as of 13:39, 9 November 2015

Maven Tools 4 Eclipse (or m4e for short) is a set of tools to convert OSGi bundles into Maven artifacts.

You can find the source on http://git.eclipse.org/c/dash/org.eclipse.dash.m4e.tools.git/

This tool is used to create the Maven artifacts which you can find on Eclipse's Nexus server at http://repo.eclipse.org/

Why Would I Want This?

The tool converts Eclipse bundles into Maven artifacts (see the FAQ for details). This allows you to use Eclipse code in plain Maven projects. No struggles with PDE, no messing with Tycho, no nightmares because of OSGi. Just plain POMs.

Why not use mvn eclipse:eclipse:make-artifacts? Actually, my tool eventually calls the Maven Eclipse plugin but it does a lot more:

  1. Unpack downloaded archives
  2. Apply patches like removing dependencies to system-bundle:system-bundle:[0,)
  3. Replace Orbit bundles with artifacts from Maven central
  4. Strip qualifiers from dependencies (3.0.0 instead of 3.0.0.v20110517-awesirfh8hgshwerut7zg).
  5. Create one POM with a dependencyManagement element that nails down all version ranges to the exact version of the artifact that is in your repository. No more unstable builds because another project added a different version of an Eclipse bundle to your local repository which just happens to fit some deeply nested dependency.
  6. Create a report about possible problems in your repository

Download

Follow this link to download an executable JAR (Changelog)

How it works

Replace RUN below with java -jar org.eclipse.dash.mt4e-0.10.0-jar-with-dependencies.jar

A simple workflow:

  1. Create a folder to work. Download the tool and put it into this folder.
  2. Download an Eclipse release from http://www.eclipse.org/downloads/ into a new folder downloads inside the work folder.
  3. Download the sources for the Eclipse release and/or other archives which contain Eclipse products or OSGi bundles.
  4. Import everything into a temporary Maven repo tmp/m2repo using RUN convert org.eclipse.dash:dependency-management:3.7.0 (you may want to tweak the version number)
  5. Check the report generated for any problems you may want to fix. Create a patch file (probably using the examples) to do that
  6. Repeat until you're happy with the results
  7. Upload the content of tmp/m2repo/ somewhere where Maven can find it (~/.m2/repository/ or your Maven proxy).

convert is actually a wrapper for these commands:

  1. Importing every archive in the folder downloads into a temporary Maven repo using RUN import archive
  2. Merge all repositories using RUN merge directories... tmp/m2repo
  3. The sources are in the wrong place. Fix that with RUN attach-sources tmp/m2repo
  4. Fix any know problems by applying the patches in the patches/ folder using the tool RUN apply-patches tmp/m2repo patches...
  5. Check the result with RUN analyze tmp/m2repo
  6. Create a POM with the version info to make sure your build picks the correct versions using the RUN dm tmp/m2repo groupId:artifactId:version
  7. If anything goes wrong, use RUN clean to clean up temporary files and start over.

Building From Source

  1. git clone git://git.eclipse.org/gitroot/dash/org.eclipse.dash.m4e.tools.git
  2. org.eclipse.dash.m4e.tools will be our work directory
  3. Download everything you will want and put it into the folder org.eclipse.dash.m4e.tools/downloads/
  4. Compile the code with Maven: mvn install
  5. See above how to use the tool

How do I import the result in a Nexus server?

It's very tedious to deploy the files one by one. Here is a recipe to mass-upload them:

  1. Create a "Hosted Repository" on Nexus
  2. Copy the files from tmp/m2repo/ into sonatype-work/nexus/storage/<name>/ where <name> is the name of the new repository.
  3. Open the Nexus UI in your web browser
  4. Login as admin
  5. Open the "Repositories" tab
  6. Right click on the hosted repository
  7. Select "Rebuild Metadata"

After that, Maven should be happy.

Support

Please file an issue for Project Dash, Component Maven.

The FAQ is here

The list of error messages is here

Biggest Issues Right Now

  1. The name m4e sucks. Suggestions?
  2. Find the time to create a repo with Eclipse 3.7

Old Python Version

You can find the original Python project on Github: https://github.com/digulla/org.eclipse.dash.m4e.tools/

It needs Python 2.7 and lxml.

Back to the top