my classpath defined in the MANIFEST.MF files references to a dir with all the required jars in it, and I would like to add a refference to a jar that is not located inside that directory. This jar should be loaded by the application from the path that was inside the MANIFEST.MF file.
something like this:
Class-Path: lib/something.jar lib/anything.jar lib/m16.jar lib/apache.jar
and the wanted is like this:
Class-Path: lib/something.jar lib/anything.jar lib/m16.jar some/other/path/lib/apache.jar
Thanks for any suggestions,