Reputation: 943
I'm using Eclipse Indigo, and I installed m2eclipse plugin. However, I can't see in Configure a Convert to Maven Project option. I think I've installed the m2e for a newer eclipse version..Is there a way to install m2e for Eclipse Indigo? (can't find it in the market)
SOLVED: Finally I uninstalled and installed again m2e and now it works..i guess i did something wrong while installing it the first time.
Upvotes: 2
Views: 8289
Reputation: 21
If you installed it through the Marketplace, try uninstalling it, and then reinstall it through "Install New Software" under Help. Enter this URL to get it from: http://download.eclipse.org/technology/m2e/releases
That worked for me. If that URL doesn't work (or if you want an older version), check this page.
Upvotes: 0
Reputation: 508
Run "mvn eclipse:eclipse" command in your project directory for convert project to maven project:
mvn eclipse:eclipse
OR (for web project)
mvn eclipse:eclipse -Dwtpversion=2.0
Upvotes: 5