serverProcess = builder.start();
} catch (IOException e) {
throw new RuntimeException("Unable to start the process", e);
}
new Thread(new OutputPump(serverProcess.getInputStream(),
new PrintWriter(System.out, true))).start();
new Thread(new OutputPump(serverProcess.getErrorStream(),
new PrintWriter(System.err, true))).start();
try {
serverProcess.waitFor();
} catch (InterruptedException e) {