final String[] exports = lib.getExports();
for (int i = 0; i < exports.length; i++) {
final String export = exports[i];
if (export.equals("*")) {
checkPackageExists(jarName, export, f);
fs.createInclude().setName("**/*");
} else {
String exp = export.replace('.', '/');
fs.createInclude().setName(exp + ".*");
if (!exp.endsWith("*")) {
checkPackageExists(jarName, exp, f);