}
}
private static void buildManifest(HashMap<String, String> argMap)
throws Exception {
Manifest m = new Manifest();
Attributes a = m.getMainAttributes();
a.put(Attributes.Name.MANIFEST_VERSION, "1.0");
//a.put("Built-By", "manningr"); // argMap.get(BUILT_BY_KEY)
a.put("Application-Version", argMap.get(VERSION_KEY));
a.put(Attributes.Name.CLASS_PATH,
"lib/antlr-2.7.5H3.jar "
+ "lib/commons-cli.jar "
+ "lib/commons-logging-1.0.4.jar "
+ "lib/forms.jar "
+ "lib/fw.jar "
+ "lib/hibernate3.jar "
+ "lib/jxl.jar "
+ "lib/log4j.jar "
+ "lib/nanoxml-2.1.jar "
+ "lib/openide.jar "
+ "lib/openide-loaders.jar "
+ "lib/org-netbeans-modules-editor-fold.jar "
+ "lib/org-netbeans-modules-editor.jar "
+ "lib/org-netbeans-modules-editor-lib.jar "
+ "lib/org-netbeans-modules-editor-util.jar "
+ "lib/syntax.jar ");
a.put(Attributes.Name.MAIN_CLASS,
"net.sourceforge.squirrel_sql.client.Main");
m.write(System.out);
}