Package org.gradle.api.initialization
Interface IncludedBuild
-
- All Known Subinterfaces:
ConfigurableIncludedBuild
public interface IncludedBuildA build that is included in the composite.- Since:
- 3.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()The name of the included build.FilegetProjectDir()The root directory of the included build.TaskReferencetask(String path)Produces a reference to a task in the included build.
-
-
-
Method Detail
-
getName
String getName()
The name of the included build.
-
getProjectDir
File getProjectDir()
The root directory of the included build.
-
task
TaskReference task(String path)
Produces a reference to a task in the included build.
-
-