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