11121314151617
* @see StopMojo */ public class StartMojo extends AbstractVBoxesMojo { protected void execute(VBox box) throws Exception { new Start(box).call(); }
13141516171819202122
public void execute() throws BuildException { if (dir == null) { throw new BuildException("dir is null"); } try { new Start(new VBox(context(), dir.toURI())).call(); } catch (Exception e) { throw new BuildException(e); } }