How can I create a Manifest
file for a group of JAR file I have already created.
I used Eclipse to create my JAR file.
Is there any better way of creating a JAR file that has a Manifest
?
How can I create a Manifest
file for a group of JAR file I have already created.
I used Eclipse to create my JAR file.
Is there any better way of creating a JAR file that has a Manifest
?
With Ant you can use jar task. It has a manifest option to specify all the attributes yo need to include. Something like this:
Also you can take a look at this documentation, this helped me to solve the issue using the Eclipse wizard.
See Eclipse Documentation