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