Package com.alexecollins.vbox.core.task

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


* @since 3.0.0
*/
public class StatusMojo extends AbstractVBoxesMojo {
  @Override
  protected void execute(VBox box) throws Exception {
    getLog().info(new Status(box).call());
  }
View Full Code Here


  public void execute() throws BuildException {
    if (dir == null) {
      throw new BuildException("dir is null");
    }
    try {
      System.out.println(new Status(new VBox(context(), dir.toURI())).call());
    } catch (Exception e) {
      throw new BuildException(e);
    }
  }
View Full Code Here

TOP

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

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.