in src/main/java/org/apache/maven/shared/invoker/MavenCommandLineBuilder.java [227:237]
protected void setGoals(InvocationRequest request, Commandline cli) throws CommandLineConfigurationException {
List<String> goals = request.getGoals();
if ((goals != null) && !goals.isEmpty()) {
try {
cli.createArg().setLine(StringUtils.join(goals.iterator(), " "));
} catch (CommandLineException e) {
throw new CommandLineConfigurationException("Problem setting goals", e);
}
}
}