Is it possible to run a Java app which doesn\'t contain MANIFEST.MF file? Of course, there\'s static main method,just lacks manifest file. And the app
MANIFEST.MF
main
You can also add the manifest, with the following command:
jar -uvfe your.jar foo.bar.Baz java -jar your.jar # tries to run main in foo.bar.Baz