final Commandline commandline = new Commandline(StringUtils.quoteAndEscape(javaExe, '"'));
final String classPath =
System.getProperty("java.class.path") + File.pathSeparator + pluginPath;
commandline.createArg().setValue("-ea");
commandline.createArg().setValue("-cp");
commandline.createArg().setValue(classPath);
commandline.createArg().setValue("-Dmonitor.port=" + monitorPort);
commandline.createArg().setValue("-Dmonitor.key=" + monitorKey);
commandline.createArg().setValue("-Dappengine.sdk.root=" + System.getProperty("appengine.sdk.root"));
commandline.createArg().setValue(AppEnginePluginMonitor.class.getName());
commandline.addArguments(args.toArray(new String[args.size()]));