-
Feature Request
-
Resolution: Done
-
Major
-
1.0.0.Beta5
-
None
/** * Used to configure and execute the project build system. * * @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a> */ public interface ProjectBuilder { /** * Manually add an argument to be passed to the underlying build system. */ ProjectBuilder addArguments(String... args); /** * Enable or disable test execution during build. */ ProjectBuilder runTests(boolean test); /** * Execute the build. */ Resource<?> build() throws BuildException; }