I've successfully completed project and now create i need to create a jar file to submit it. I used Eclipse and MYSQL
In my src
directory, I already created a folder META-MF
with a MANIFEST.MF
file that contains
Manifest-Version: 1.0
Main-Class: FrameLogin
After compiling and save my program, I exported the jar file using the existing manifest MANIFEST.MF
from my workspace and imported the jar file in the lib folder
When I finally run it on command prompt it gives me and error
No main manifest attribute in jar
What am I missing here?
Additional question: When creating a manifest it says
It is important that the file ends with a blank line
What does it mean?