| Package | Description |
|---|---|
| org.gradle.tooling |
The main interfaces and classes of the Gradle tooling API.
|
| org.gradle.tooling.internal.consumer |
| Modifier and Type | Interface and Description |
|---|---|
interface |
BuildLauncher
A
BuildLauncher allows you to configure and execute a Gradle build. |
interface |
ModelBuilder<T extends Model>
A
ModelBuilder allows you to fetch a snapshot of the model for a project. |
| Modifier and Type | Method and Description |
|---|---|
LongRunningOperation |
LongRunningOperation.addProgressListener(ProgressListener listener)
Adds a progress listener which will receive progress events as the operation runs.
|
LongRunningOperation |
LongRunningOperation.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.
|
LongRunningOperation |
LongRunningOperation.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.
|
LongRunningOperation |
LongRunningOperation.setStandardError(OutputStream outputStream)
Sets the
OutputStream which should receive standard error logging generated while running the operation. |
LongRunningOperation |
LongRunningOperation.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. |
LongRunningOperation |
LongRunningOperation.setStandardOutput(OutputStream outputStream)
Sets the
OutputStream which should receive standard output logging generated while running the operation. |
LongRunningOperation |
LongRunningOperation.withArguments(String... arguments)
Specify the command line build arguments.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultModelBuilder<T extends Model,P> |
Copyright © 2013. All rights reserved