Historically, its been a major hassle for our team to import our multi-module Maven project into Eclipse given all the Flex, WTP, and GWT stuff in there. We were recently thinking that the maven-eclipse-plugin could help us by generating the appropriate Eclipse project files.

However, it seems now that the M2Eclipse plugin has been swallowed up by Eclipse and importing Maven projects now seems to read the pom and try to do the Right Thing.

Does this mean the maven-eclipse-plugin is essentially obsolete? What can we do to help our projects import into Eclipse in the best possible way?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

maven eclipse plugin and m2eclipse (now m2e) are independent projects. They stopped working together from 2.7 release of maven eclipse plugin (when maven eclipse plugin dropped eclipse:m2eclipse goal).

I believe you can use maven eclipse plugin with Eclipse if you do not have m2e plugin, but the support, especially for wtp is limited, if not non-existent.

link|improve this answer
The latest maven eclipse plugin documentation makes it look like it still has the eclipse:eclipse goal. See here: maven.apache.org/plugins/maven-eclipse-plugin/eclipse-mojo.html – HDave Dec 6 '11 at 4:46
@HDave. I did not say it does not. I said eclipse:m2eclipse goal - specifically to support m2eclipse. That is also why I mentioned, you can still have it work with Eclipse. – Raghuram Dec 6 '11 at 4:49
I think I need to get those eyeglasses...misread the text. Sounds like we'll go with m2e and try to get that working with configurations and all. Thanks. – HDave Dec 6 '11 at 5:51
feedback

It is now officially part of the Eclipse project. It is bundled with the Eclipse.org Java builds. The previous means of installing the plugin is essentially obsolete. It can now be installed via the Indigo update site under "Collaboration -> m2e".

Indigo update site Maven

To import maven projects in to Eclipse simply use the same "File -> Import... -> Maven -> Existing Maven Project"

Eclipse Maven Import

link|improve this answer
Yes, but in the past, that never worked very well for anything other than a simple, generic, Java maven module. I was hoping the Maven plugin "maven-eclipse-plugin" (not to be confused with Eclipse's Maven plugin) would help, but it sounds like from Raghuram's answer that it won't. – HDave Dec 6 '11 at 4:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.