Reputation: 77
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
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