Right now, with the manifest file, I am able to create my runnable jar to work with:
folder structure:
libs/thirdpartylib1.jar
libs/thirdpartylib2.jar
myJar.jar
using this manifest:
Class-Path: libs/thirdpartylib1.jar libs/thirdpartylib2.jar
Main-Class: myPackage.myClass
Is there any way I can package these jar files into my runnable jar so that I do not need the libs/ directory in my folder structure for it to run?
Thanks in advance,
TW