@Parameter(property = "bowerOptions")
private String[] bowerOptions;
@Override
protected List<Executable> getExecutables() {
Executable executable = new Executable(bowerExecutable);
executable.addArgument(BOWER_INSTALL_COMMAND);
if (!showColors) {
executable.addArgument("--color=false");
}
for(String opt: bowerOptions) {
executable.addNormalizedArgument(opt, "=");
}
return Arrays.asList(executable);
}