Package com.alexecollins.vbox.maven

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

package com.alexecollins.vbox.maven;

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

/**
* Connect to the box.
*
* @goal ssh
* @author alexec (alex.e.c@gmail.com)
* @since 3.0.0
*/
public class SshMojo extends AbstractVBoxesMojo {

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

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

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.