13141516171819202122
if (dir == null) { throw new BuildException("dir is null"); } try { new Create(work(), new VBox(context(), dir.toURI())).call(); } catch (Exception e) { throw new BuildException(e); } }
13141516171819
* @see ProvisionMojo */ public class CreateMojo extends AbstractVBoxesMojo { protected void execute(final VBox box) throws Exception { new Create(getWork(), box).call(); }