Package com.alexecollins.vbox.core.task

Examples of com.alexecollins.vbox.core.task.Provision


  public void execute() throws BuildException {
    if (dir == null) {
      throw new BuildException("dir is null");
    }
    try {
      new Provision(work(), new VBox(context(), dir.toURI()), Collections.<String>singleton("*")).call();
    } catch (Exception e) {
      throw new BuildException(e);
    }
  }
View Full Code Here


  protected String targets = "*";

  @Override
  protected void execute(VBox box) throws Exception {

    new Provision(getWork(), box, new HashSet<String>(Arrays.asList(this.targets.split(",")))).call();
  }
View Full Code Here

TOP

Related Classes of com.alexecollins.vbox.core.task.Provision

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.