Package org.gradle.api.initialization
Interface ConfigurableIncludedBuild
- All Superinterfaces:
IncludedBuild
A build that is to be included in the composite.
- Since:
- 3.1
-
Method Summary
Modifier and TypeMethodDescriptionvoid
dependencySubstitution
(Action<? super DependencySubstitutions> action) Configures the dependency substitution rules for this included build.void
Sets the name of the included build.Methods inherited from interface org.gradle.api.initialization.IncludedBuild
getName, getProjectDir, task
-
Method Details
-
setName
Sets the name of the included build.- Parameters:
name
- the name of the build- Since:
- 6.0
-
dependencySubstitution
Configures the dependency substitution rules for this included build. The action receives an instance ofDependencySubstitutions
which can be configured with substitution rules. Project dependencies are resolved in the context of the included build.
-