JavaCommandBuilder command = new JavaCommandBuilder();
command.addClasspathFolder(getInstallDir());
command.addDefine("jetty.home", getBaseDir());
command.addDefine("java.io.tmpdir", "/tmp");
command.setJar(new File(getBaseDir(), "start.jar"));
command.addArgument(Argument.buildLiteral("--pre=etc/jetty-logging.xml"));
return command.get();
}
@Override
protected Map<String, String> getConfigurationProperties() throws OpsException {