Example #1
0
 public void runBuilder(String[] args) throws Exception {
   String[] newArgs = new String[args.length + 2];
   newArgs[0] = "--strip";
   newArgs[1] = "embstrip.jar";
   System.arraycopy(args, 0, newArgs, 2, args.length);
   EmbeddedJarBuilder.main(newArgs);
 }
Example #2
0
 public void runBuilder(String[] args) throws Exception {
   EmbeddedJarBuilder.main(args);
 }