13 public static void export(File targetJar, File compiledClassesDir, File sourceDir)
throws IOException {
14 try (JarOutputStream jos =
new JarOutputStream(
new FileOutputStream(targetJar))) {
16 Manifest manifest =
new Manifest();
17 manifest.getMainAttributes().put(Attributes.Name.MANIFEST_VERSION,
"1.0");
18 manifest.getMainAttributes().put(Attributes.Name.MAIN_CLASS,
"com.jscratch.MainRunner");