| Package | Description |
|---|---|
| org.gradle.tooling |
The main interfaces and classes of the Gradle tooling API.
|
| Modifier and Type | Method and Description |
|---|---|
BuildLauncher |
BuildLauncher.addProgressListener(ProgressListener listener)
Adds a progress listener which will receive progress events as the operation runs.
|
BuildLauncher |
BuildLauncher.forTasks(Iterable<? extends Task> tasks)
Sets the tasks to be executed.
|
BuildLauncher |
BuildLauncher.forTasks(String... tasks)
Sets the tasks to be executed.
|
BuildLauncher |
BuildLauncher.forTasks(Task... tasks)
Sets the tasks to be executed.
|
BuildLauncher |
ProjectConnection.newBuild()
Creates a launcher which can be used to execute a build.
|
BuildLauncher |
BuildLauncher.setJavaHome(File javaHome)
If the target gradle version supports it you can use this setting
to specify the java home directory to use for the long running operation.
|
BuildLauncher |
BuildLauncher.setJvmArguments(String... jvmArguments)
If the target gradle version supports it you can use this setting
to specify the java vm arguments to use for the long running operation.
|
BuildLauncher |
BuildLauncher.setStandardError(OutputStream outputStream)
Sets the
OutputStream which should receive standard error logging generated while running the operation. |
BuildLauncher |
BuildLauncher.setStandardInput(InputStream inputStream)
If the target gradle version supports it you can use this setting
to set the standard
InputStream that will be used by builds. |
BuildLauncher |
BuildLauncher.setStandardOutput(OutputStream outputStream)
Sets the
OutputStream which should receive standard output logging generated while running the operation. |
BuildLauncher |
BuildLauncher.withArguments(String... arguments)
Specify the command line build arguments.
|
Copyright © 2013. All rights reserved