ZipFileSet zip = new ZipFileSet();
zip.setSrc(getDeployableFile().getFile());
jar.addZipfileset(zip);
ZipFileSet fileSet = new ZipFileSet();
fileSet.setDir(this.tmpDir);
fileSet.createInclude().setName("weblogic.xml");
fileSet.setPrefix("WEB-INF");
jar.addZipfileset(fileSet);
jar.execute();
}