m2e-wtp error: <path>/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF (No such file or directory)

EclipseM2e

Eclipse Problem Overview


I use m2e 1.2.0 and m2e-wtp 0.16.0, and occasionally my Eclipse build fails with the error:

<path>/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF (No such file or directory)

The problem can be temporarily solved by doing a Maven->Update project..., but the error will come back after a while. Not sure what exactly the trigger is....

Any suggestions on how to fix the issue permanently?

[Edit] I found that the issue is triggered when I build the project externally using the Maven command line directly. This will remove the default MANIFEST.MF that m2e-wtp generates, and it apparently doesn't get regenerated until you do a rebuild in Eclipse.

Eclipse Solutions


Solution 1 - Eclipse

Eclipse versions earlier than Luna

I'm not certain if this is the best thing to do but I followed the instructions mentioned here with regards to getting rid of the auto generated web resources folder and this seems to also resolve the issue with the missing MANIFEST.MF: > - on your project only : right-click on the project > Properties > Maven > WTP : check "Enable Project Specific Settings" and uncheck "Maven Archiver generates files under the build directory" > - on the whole workspace : Window > Preferences > Maven > WTP : uncheck "Maven Archiver generates files under the build directory"

We actually generate our manifest entries as part of the maven-war-plugin when we actually want to package/build the project, but I dont think m2e-wtp uses this. In any event, the manifest file is irrelevant for us in the build that m2e-wtp creates for use within eclipse.

Eclipse Luna and later

For Eclipse Luna you have to go:

> Preferences > Maven > Java EE Integration and uncheck "Maven Archiver generates files under the build directory".

Eclipse Luna does not have the path at project Properties and the WTP section

Solution 2 - Eclipse

This solution works for me Rightclick on Project --> Properties --> Maven --> Java EE Integration --> check enable project specific settings and disable Maven archiver generates files

Solution 3 - Eclipse

Try to select your project, and clean it by using the menu :

Project>Clean

Then refresh your pom.xml. That worked for me .

Solution 4 - Eclipse

Try Eclipse -> Project -> Clean

Then right click Your project --> Team --> Share Project --> SVN --> Choose your svn and ok

Everything should be solved

Solution 5 - Eclipse

Right click on Your Project, go to properties and then to Project Facets, now go to Runtime tab on the right and select the server and click on apply, the error message would be gone.

Solution 6 - Eclipse

In your pom.xml file check the following thing,

<build>
<finalName>Write a file name which is Your Maven Buid Name</finalName>
</build>

Solution 7 - Eclipse

  1. Go to pom.xml
  2. Ctrl+a then Ctrl+x then Ctrl+s then Ctrl+v then Ctrl+s
  3. Right Click on project. Maven -> update project

This got solved for me.

Solution 8 - Eclipse

manifest.mf is getting destroyed when we try to do maven build using mvn clean install. If we don't want to destroy manifest.mf file, just enter the command mvn install in the command prompt.

And if we missed the manifest.mf file, we can generate by uncheck & check the "Maven archiver generates files under the build directory" option in maven - JAVA EE integration as you said.

Solution 9 - Eclipse

Clean All Projects will solve this issue.

Solution 10 - Eclipse

> Right click on project > properties > maven > update project > select > last three options > click ok

Done. It worked for me

Solution 11 - Eclipse

Replacing manen to an external installation solved it for me.
Window -> Preferences -> [search maven in the search box] -> Installation Add a full external maven installation and select its checkbox. apply and restart.

Solution 12 - Eclipse

Cleaning the project didn't do the trick,There were 2 external jars that were added to the build path removing them and moving them inside pom.xml really fixed the issue for me.

Solution 13 - Eclipse

I use eclipse Luna and find it useless to enable project specific settings. Finally, I found the configure file org.eclipse.m2e.wtp.prefs in project .settings and change the configuration "org.eclipse.m2e.wtp.enableM2eWtp=true". It works after maven build the project. Hope this is help to people meets the same case as me. :D

Solution 14 - Eclipse

For Marte Eclipse:

Go to: Window > Preference > Marven > Java EE Integration

Uncheck Marven Archiver generates files under the build directory.

It's Works

Solution 15 - Eclipse

To make sure resources are properly refreshed, as maven cleans up target, you can setup maven build to automatically refresh project + target folder, etc.,.

Check the option to automatically refresh resources in your maven build

Solution 16 - Eclipse

in my case (Eclipse Neon), I enabled Maven Archiver generates files under build directory

Solution 17 - Eclipse

m2e-wtp plugin might generating an almost empty MANIFEST.MF in /target/m2e-wtp/web-resources/META-INF folder, no matter where you place the real MANIFEST.MF have a look at Virgo's admin console. Just browse the "bundles" category the bundle. You'll see what packages are being imported and exported FOR REAL.

So what you can do is copy the MANIFEST.MF to the /$VIRGO_BASE/stage/$BUNDLE_WEBAPP/META-INF directory and hit "redeploy" in Eclipse's Server View.

Solution 18 - Eclipse

Just below the above line, I was getting an additional info saying "Out of Sync" I only ran project clean "my project" and bingo, it worked for me..

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJelle van GeunsView Question on Stackoverflow
Solution 1 - EclipsecosjavView Answer on Stackoverflow
Solution 2 - EclipseVijayaKumar ThangavelView Answer on Stackoverflow
Solution 3 - EclipseMehdiView Answer on Stackoverflow
Solution 4 - EclipseSenthil kumarView Answer on Stackoverflow
Solution 5 - EclipsesunnyView Answer on Stackoverflow
Solution 6 - EclipseVivek GondliyaView Answer on Stackoverflow
Solution 7 - Eclipsevishal pathodeView Answer on Stackoverflow
Solution 8 - EclipseNagappanView Answer on Stackoverflow
Solution 9 - EclipseDev KashyapView Answer on Stackoverflow
Solution 10 - EclipseShubham GuptaView Answer on Stackoverflow
Solution 11 - EclipseozmaView Answer on Stackoverflow
Solution 12 - EclipseMightianView Answer on Stackoverflow
Solution 13 - Eclipseuser3655479View Answer on Stackoverflow
Solution 14 - EclipseRicardoView Answer on Stackoverflow
Solution 15 - EclipsekisnaView Answer on Stackoverflow
Solution 16 - EclipseeeadevView Answer on Stackoverflow
Solution 17 - EclipseshijumaxView Answer on Stackoverflow
Solution 18 - Eclipsemitesh keswaniView Answer on Stackoverflow