Interface GradleBuild
- All Superinterfaces:
BuildModel
,Model
- Since:
- 1.8
-
Method Summary
Modifier and TypeMethodDescriptionReturns the identifier for this Gradle build.DomainObjectSet<? extends GradleBuild>
Returns all builds contained in this build that should be imported into an IDE.DomainObjectSet<? extends GradleBuild>
Returns the included builds that were referenced by this build.DomainObjectSet<? extends BasicGradleProject>
Returns the set of all projects for this build.Returns the root project for this build.
-
Method Details
-
getBuildIdentifier
BuildIdentifier getBuildIdentifier()Returns the identifier for this Gradle build.- Specified by:
getBuildIdentifier
in interfaceBuildModel
- Since:
- 2.13
-
getRootProject
BasicGradleProject getRootProject()Returns the root project for this build.- Returns:
- The root project
-
getProjects
DomainObjectSet<? extends BasicGradleProject> getProjects()Returns the set of all projects for this build.- Returns:
- The set of all projects.
-
getIncludedBuilds
DomainObjectSet<? extends GradleBuild> getIncludedBuilds()Returns the included builds that were referenced by this build. This is the set of builds that were directly included by this build via itsSettings
instance.Note that this set does not include builds that are added in other ways, such as a `buildSrc` build. Also note that a build may be included by multiple builds, so that the inclusions form a graph of builds rather than a tree of builds. There may be cycles in this graph.
In general, it is better to use
getEditableBuilds()
instead of this method.- Since:
- 3.3
-
getEditableBuilds
DomainObjectSet<? extends GradleBuild> getEditableBuilds()Returns all builds contained in this build that should be imported into an IDE.This is not always the same the builds returned by
getIncludedBuilds()
. For the root build, the set of importable builds contains all builds that participate in the composite build, including those directly included by the root build plus all builds included transitively. For Gradle 7.2 and later, this set also includes any `buildSrc` builds that may be present. For all other builds, this set is empty.Note that this set does not include the root build itself.
- Since:
- 4.10
-