Package com.alexecollins.vbox.maven

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

package com.alexecollins.vbox.maven;

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

/**
* Create all the boxes based on the definitions.
*
* Normally you'd use "provision" instead.
*
* @goal create
* @phase pre-integration-test
* @see ProvisionMojo
*/
public class CreateMojo extends AbstractVBoxesMojo {

  protected void execute(final VBox box) throws Exception {
    new Create(getWork(), box).call();
  }

}
TOP

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

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.