10111213141516
* @phase clean */ public class CleanMojo extends AbstractVBoxesMojo { protected void execute(VBox box) throws Exception { new Clean(getWork(),box).call(); }
13141516171819202122
public void execute() throws BuildException { if (dir == null) { throw new BuildException("dir is null"); } try { new Clean(work(), new VBox(context(), dir.toURI())).call(); } catch (Exception e) { throw new BuildException(e); } }