Package com.alexecollins.vbox.maven

Source Code of com.alexecollins.vbox.maven.StatusMojo

package com.alexecollins.vbox.maven;

import com.alexecollins.vbox.core.VBox;
import com.alexecollins.vbox.core.task.Status;

/**
* List the status of the machine.
*
* @goal status
* @author alexec (alex.e.c@gmail.com)
* @since 3.0.0
*/
public class StatusMojo extends AbstractVBoxesMojo {
  @Override
  protected void execute(VBox box) throws Exception {
    getLog().info(new Status(box).call());
  }
}
TOP

Related Classes of com.alexecollins.vbox.maven.StatusMojo

TOP
Copyright © 2018 www.massapi.com. 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.