Package com.alexecollins.vbox.maven

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

package com.alexecollins.vbox.maven;

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

/**
* Stop all the boxes defined in src/main/vbox.
*
* @goal stop
* @phase post-integration-test
* @see StartMojo
*/
public class StopMojo extends AbstractVBoxesMojo {

  protected void execute(VBox box) throws Exception {
    new Stop(box).call();
  }
}
TOP

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

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.