Since Indigo, the Maven Ecliple plugin formerly known as m2eclipse became part of Eclipse release (at least in the pure Java release). The name of the plugin also changed from m2eclipse to m2e. This was not the sole change, however:
- The number of tabs on the POM has shrinked drastically, and the features as well. This will probably be the subject of a later post since I feel quite cheated by the upgrade.
- The POM configuration has been more integrated with Eclipse build (which can cause unwanted side-effects as I described in my last article).
More importantly, projects that began with m2eclipse can be built in Indigo but no contextual Maven menu is accessible on the project itself (though a contextual menu is available on the POM).
In order to migrate flawlessly and have our contextual menu back, some actions are necessary. They are gruesome because it involves updating by hand Eclipse configuration file.
At this point, you have the choice to stop reading. If you decide to continue and use the process described below, it’s at your own risk! |
The Maven plugin recognizes a project as a Maven one based the .project Eclipse proprietary configuration file. To display it, go to the Project Explorer view, click on the scrolling menu at the top right and choose Customize View. You have to uncheck *.resources: along the .project file , you should see a .classpath file as well as a .settings folder.
- In the .project:
- Replace
org.maven.ide.eclipse.maven2Builder
byorg.eclipse.m2e.core.maven2Builder
in thebuildSpec
section - Replace
org.maven.ide.eclipse.maven2Nature
byorg.eclipse.m2e.core.maven2Nature
in thenatures
section
- Replace
- In the .classpath, replace
org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER
byorg.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER
- Finally, in the .settings folder, rename the org.maven.ide.eclipse.prefs file to org.eclipse.m2e.core.prefs. Contents should be left unchanged.
Now, the contextual menu should appear and work accordingly.
Remember, this is a big hack you should only use with the right parachute (at least a source control management system) since it will hurt you plenty if it fails. For me, it has always worked… yet.