+ " -Dkaraf.startLocalConsole=false"
+ " -Dkaraf.startRemoteShell=true"
+ " -classpath \"" + classpath.toString() + "\""
+ " org.apache.karaf.main.Main";
LOGGER.debug("Starting instance " + name + " with command: " + command);
Process process = new ProcessBuilderFactoryImpl().newBuilder()
.directory(new File(location))
.command(command)
.start();
instance.pid = process.getPid();
}