Package com.alexecollins.vbox.core.task

Examples of com.alexecollins.vbox.core.task.ListDefinitions


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);
    }
  }
View Full Code Here


  @Override
  public void execute() throws BuildException {

    try {
      LOGGER.info(new ListDefinitions().call().toString());
    } catch (Exception e) {
      throw new BuildException(e);
    }
  }
View Full Code Here

TOP

Related Classes of com.alexecollins.vbox.core.task.ListDefinitions

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.