I realized that eclipse generates a jar executable with all the .jar library files extracted and included in the jar file. How to do this when creating a jar file manually from the command line. Do I need to extract all lib libraries to the class folder?
I am currently using -
jar cvfm example.jar manifest.txt -C Classes/ .
Which creates a jar file with all the class files, and I need to have all the banks of the library in the same folder as this example.jar.
source share