Maven does not appear in Eclipse (Kepler) even after installing m2e

I saw that others had this problem when Maven did not appear for them in Eclipse after installing the m2e plugin, but most solutions seem to suggest doing something like "Configure> Convert to Maven". But Maven does not appear to me in the Configure list, and it does not appear in the console> Open Console or in the File> New list. I see that some solutions relate to editing the classpath of the project, but I have no clear idea of ​​how to do this. I'm trying to get started with a Java EE7 book, and it uses Maven in the examples. Can anyone help?

+7
java eclipse maven java-ee-7
source share
6 answers

Check the .log file in the .metadata folder in the workspace folder. Delete the .log file and restart Eclipse with the -clean option. If maven does not appear in the user interface, look at the .log file to see why maven cannot be loaded.

+2
source share

Have you tried downloading Eclipse Java EE ( http://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/keplerr )? He already installed Maven

+1
source share

In the end, I just uninstalled and reinstalled Eclipse. Not sure what caused the problem in the first place, but it seems to have done the trick. I have definitely installed the Eclipse Java EE version and Maven now appears.

+1
source share

First, make sure m2e is installed correctly. To verify this, simply right-click on the project and you can see "Maven" in the context menu.

If it is displayed, simply select "Update project configuration"; once this is updated m2e will recognize and build the project as maven.

After that, please check whether the property property-> build path → lib is displayed depending on maven and the standard JRE in the library path.

0
source share

This is a permission issue if you are using linux. Delete the eclipse folder and workspace directory (/ home / user / workspace). Retrieve the eclipse again using root. Grant full permission for the eclipse folder and run eclipse using root. then install the maven plugin from Marketplace or installNewSoftware. He should work then.

0
source share

I had the same problem and found that, oddly enough, closing and reopening Eclipse is NOT the same as restarting Eclipse. When he asks if you want to restart now, select "Yes" or "Restart" in the "File" menu.

0
source share

All Articles