Package org.gradle.process
Interface ExecSpec
- All Superinterfaces:
BaseExecSpec
,ProcessForkOptions
- All Known Implementing Classes:
AbstractExecTask
,Exec
,RunTestExecutable
Specified the options for executing some command.
-
Method Summary
Modifier and TypeMethodDescriptionAdds arguments for the command to be executed.Adds arguments for the command to be executed.commandLine
(Iterable<?> args) Sets the full command line, including the executable to be executed plus its arguments.commandLine
(Object... args) Sets the full command line, including the executable to be executed plus its arguments.getArgs()
Returns the arguments for the command to be executed.Argument providers for the application.Sets the arguments for the command to be executed.Sets the arguments for the command to be executed.void
setCommandLine
(Iterable<?> args) Sets the full command line, including the executable to be executed plus its arguments.void
setCommandLine
(Object... args) Sets the full command line, including the executable to be executed plus its arguments.void
setCommandLine
(List<String> args) Sets the full command line, including the executable to be executed plus its arguments.Methods inherited from interface org.gradle.process.BaseExecSpec
getCommandLine, getErrorOutput, getStandardInput, getStandardOutput, isIgnoreExitValue, setErrorOutput, setIgnoreExitValue, setStandardInput, setStandardOutput
Methods inherited from interface org.gradle.process.ProcessForkOptions
copyTo, environment, environment, executable, getEnvironment, getExecutable, getWorkingDir, setEnvironment, setExecutable, setExecutable, setWorkingDir, setWorkingDir, workingDir
-
Method Details
-
setCommandLine
Sets the full command line, including the executable to be executed plus its arguments.- Parameters:
args
- the command plus the args to be executed- Since:
- 4.0
-
setCommandLine
Sets the full command line, including the executable to be executed plus its arguments.- Parameters:
args
- the command plus the args to be executed
-
setCommandLine
Sets the full command line, including the executable to be executed plus its arguments.- Parameters:
args
- the command plus the args to be executed
-
commandLine
Sets the full command line, including the executable to be executed plus its arguments.- Parameters:
args
- the command plus the args to be executed- Returns:
- this
-
commandLine
Sets the full command line, including the executable to be executed plus its arguments.- Parameters:
args
- the command plus the args to be executed- Returns:
- this
-
args
Adds arguments for the command to be executed.- Parameters:
args
- args for the command- Returns:
- this
-
args
Adds arguments for the command to be executed.- Parameters:
args
- args for the command- Returns:
- this
-
setArgs
Sets the arguments for the command to be executed.- Parameters:
args
- args for the command- Returns:
- this
- Since:
- 4.0
-
setArgs
Sets the arguments for the command to be executed.- Parameters:
args
- args for the command- Returns:
- this
-
getArgs
Returns the arguments for the command to be executed. Defaults to an empty list. -
getArgumentProviders
List<CommandLineArgumentProvider> getArgumentProviders()Argument providers for the application.- Since:
- 4.6
-