Task.Builder |
Task.Builder.args(List<String> args) |
(experimental) Should the provided exec shell command receive fixed args.
|
Task.Builder |
Task.Builder.condition(String condition) |
(experimental) A shell command which determines if the this task should be executed.
|
static Task.Builder |
Task.Builder.create(String name) |
|
Task.Builder |
Task.Builder.cwd(String cwd) |
(experimental) The working directory for all steps in this task (unless overridden by the step).
|
Task.Builder |
Task.Builder.description(String description) |
(experimental) The description of this build command.
|
Task.Builder |
Task.Builder.env(Map<String,String> env) |
(experimental) Defines environment variables for the execution of this task.
|
Task.Builder |
Task.Builder.exec(String exec) |
(experimental) Shell command to execute as the first command of the task.
|
Task.Builder |
Task.Builder.receiveArgs(Boolean receiveArgs) |
(experimental) Should the provided exec shell command receive args passed to the task.
|
Task.Builder |
Task.Builder.requiredEnv(List<String> requiredEnv) |
(experimental) A set of environment variables that must be defined in order to execute this task.
|
Task.Builder |
Task.Builder.steps(List<? extends TaskStep> steps) |
(experimental) List of task steps to run.
|