Skip to content

Instantly share code, notes, and snippets.

@samuell
Created October 7, 2014 16:07
Show Gist options
  • Save samuell/da3089a88652804eb492 to your computer and use it in GitHub Desktop.
Save samuell/da3089a88652804eb492 to your computer and use it in GitHub Desktop.
Example of a minimal META-INF/MANIFEST.MF file for creating jar files
Manifest-Version: 1.0
Class-Path: some-library.jar
Main-Class: MainClass
@samuell
Copy link
Author

samuell commented Oct 7, 2014

Create jar with something like:

jar -cvfm newjar.jar META-INF/MANIFEST.MF folder1 folder2 MainClass.class

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment