ScriptTask |
ScriptTask.argument(@NotNull java.lang.String argument) |
Sets command line argument to be passed when script is executed.
|
ScriptTask |
ScriptTask.environmentVariables(@NotNull java.lang.String environmentVariables) |
Sets environment variables to be set when script is executed.
|
ScriptTask |
ScriptTask.fileFromPath(@NotNull java.lang.String path) |
Sets the file path of script to execute.
|
ScriptTask |
ScriptTask.fileFromPath(@NotNull java.nio.file.Path path) |
Sets the file path of script to execute.
|
ScriptTask |
ScriptTask.inlineBody(@NotNull java.lang.String body) |
Sets body of the script to execute.
|
ScriptTask |
ScriptTask.inlineBodyFromPath(@NotNull java.nio.file.Path path) |
Sets body of the script to execute from a file.
|
ScriptTask |
ScriptTask.interpreter(ScriptTaskProperties.Interpreter interpreter) |
Selects interpreter that will run the script.
|
ScriptTask |
ScriptTask.interpreterBinSh() |
Specifies that script will be run by /bin/sh.
|
ScriptTask |
ScriptTask.interpreterCmdExe() |
Selects that script should be run by cmd.exe.
|
ScriptTask |
ScriptTask.interpreterShell() |
Specifies that script will be run by an interpreter chosen based on the shebang line of the script.
|
ScriptTask |
ScriptTask.interpreterWindowsPowerShell() |
Specifies that script will be run by Windows PowerShell.
|
ScriptTask |
ScriptTask.location(ScriptTaskProperties.Location location) |
Specifies the source of script to run.
|
ScriptTask |
ScriptTask.workingSubdirectory(@NotNull java.lang.String workingSubdirectory) |
Sets a directory the script should be executed in.
|