manifest - Create jar file that can be executed on any machine -
I have a simple Java app that prints 'Hello World'! On console it is packed in app.jar: Jar Structure: Main / Hello. Class - Singing printline method with my main category Meta-INF / MANIFEST.MF The following are the manifest files: Manifest-version: 1.0 Main-Class: Main.Holo Everything goes fine. But when you have reliance on troubles, I am not sure, but in this case think that you have to keep all the lbs in a jar file. If I put them in Meta-INF / lib, then I'll have to specify a "class-path" in the manifest. How will "class-path" look? PS has some similar questions but I have not received the correct answer. I use the ANt build script to package my app and all the required jar files The build.xml file looks something like this: & lt; Project default = "create_run_jar" name = "Create Runnable Jar for MyProject" & gt; & Lt ;! - Requires ANT 1.7 - & gt; & Lt; Target name = "crea...