hsnclk
hsnclk

Reputation: 77

META-INF/MANIFEST.MF file not found in unnamed.war

I am using Intellij idea and I want to deploy my project to the server. Before that I tried to create a .war file but when i create a war file, i am getting this error

META-INF/MANIFEST.MF file not found in unnamed.war 

How can I solve this problem ?

Upvotes: 1

Views: 9246

Answers (1)

Anton Dozortsev
Anton Dozortsev

Reputation: 4892

Add MANIFEST.MF to YOUR_PROJECT_NAME/web/src/main/webapp/META-INF/ folder with the simple content:

Manifest-Version: 1.0

Or you can generate it using IntelliJ Artifacts Configuring

Upvotes: 3

Related Questions