There is a bunch of dependent jars in my project folder:
/lib/someapi-1.1.1/main.jar /lib/someotherapi-2.2.2/api-2.2.2.jar /lib/...
I create a JAR file, and my application requires that dependent bans be included in the final jar in the / lib folder in the jar, so the last jar should have a structure like:
/org/me/myclasses.class /lib/main.jar /lib/api-2.2.2.jar
How to get / lib / * .jar files smoothed included in the / lib directory of my last jar file?
EXPLANATION
I'm just trying to get a set of resource files, flattened and added to this directory in my last bank.
source share