if (serverProperties != null && serverProperties.isEmpty() == false) {
Server fabric8Server = new Server();
fabric8Server.setId(serverProperties.getProperty(SERVER_ID));
fabric8Server.setUsername(serverProperties.getProperty(SERVER_USER));
fabric8Server.setPassword(serverProperties.getProperty(SERVER_PASSWORD));
executionRequest.addServer(fabric8Server);
}
executionRequest.setGoals(goals);
MavenExecutionResult result = maven.execute(executionRequest, monitor);
for (Throwable t : result.getExceptions()) {