public class ListDefinitionsMojo extends AbstractVBoxMojo {
private static final Logger LOGGER = LoggerFactory.getLogger(ListDefinitionsMojo.class);
public void execute() throws MojoExecutionException, MojoFailureException {
for (String d : new ListDefinitions().call()) {
LOGGER.info(d);
}
}