| Package | Description |
|---|---|
| org.gradle.api.tasks |
The standard
Task implementations. |
| Modifier and Type | Method and Description |
|---|---|
Exec |
Exec.args(Object... args)
Adds arguments for the command to be executed.
|
Exec |
Exec.commandLine(Object... arguments)
Sets the full command line, including the executable to be executed plus its arguments.
|
Exec |
Exec.copyTo(ProcessForkOptions target)
Copies these options to the given target options.
|
Exec |
Exec.environment(Map<String,?> environmentVariables)
Adds some environment variables to the environment for this process.
|
Exec |
Exec.environment(String name,
Object value)
Adds an environment variable to the environment for this process.
|
Exec |
Exec.executable(Object executable)
Sets the name of the executable to use.
|
Exec |
Exec.setArgs(Iterable<?> arguments)
Sets the arguments for the command to be executed.
|
Exec |
Exec.setErrorOutput(OutputStream outputStream)
Sets the output stream to consume standard error from the process executing the command.
|
Exec |
Exec.setStandardInput(InputStream inputStream)
Sets the standard input stream for the process executing the command.
|
Exec |
Exec.setStandardOutput(OutputStream outputStream)
Sets the output stream to consume standard output from the process executing the command.
|
Exec |
Exec.workingDir(Object dir)
Sets the working directory for the process.
|
Copyright © 2013. All rights reserved