Project Builder
Creates dummy instances of org.gradle.api.Project which you can use in testing custom task and plugin implementations.
To create a project instance:
- Create a
ProjectBuilder
instance by calling builder. - Optionally, configure the builder.
- Call build to create the
Project
instance.
You can reuse a builder to create multiple Project
instances.
The ProjectBuilder
implementation bundled with Gradle 3.0 and 3.1 suffers from a binary compatibility issue exposed by applying plugins compiled with Gradle 2.7 and earlier. Applying those pre-compiled plugins in a ProjectBuilder context will result in a ClassNotFoundException.
Functions
Link copied to clipboard
Creates a project builder.
Link copied to clipboard
Specifies the Gradle user home for the builder.
Link copied to clipboard
Specifies the name for the project
Link copied to clipboard
Specifies the parent project.
Link copied to clipboard
Specifies the project directory for the project to build.