Either unpack the jars into the jar, or simply add them to the jar class path using the Class-Path attribute in the meta-inf, and distribute the libraries along with your main jar. Example META_INF / Manifest.mf:
Manifest-Version: 1.0
Class-Path: itext.jar jxl.jar jai.jar
Main-Class: com.xxx.yyy.Main
source
share