|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface BuildListener
A BuildListener
is notified of the major lifecycle events as a Gradle
instance executes a
build.
Gradle.addBuildListener(BuildListener)
Method Summary | |
---|---|
void |
buildFinished(BuildResult result)
Called when the build is completed. |
void |
buildStarted(StartParameter startParameter)
Called when the build is started. |
void |
projectsEvaluated(Build build)
Called when all projects for the build have been evaluated. |
void |
projectsLoaded(Build build)
Called when the projects for the build have been created from the settings. |
void |
settingsEvaluated(Settings settings)
Called when the build settings have been loaded and evaluated. |
void |
taskGraphPopulated(TaskExecutionGraph graph)
Called when the task graph for the build has been populated. |
Method Detail |
---|
void buildStarted(StartParameter startParameter)
Called when the build is started.
startParameter
- The StartParameter
used to create the Gradle instance. Never null.void settingsEvaluated(Settings settings)
Called when the build settings have been loaded and evaluated. The settings object is fully configured and is ready to use to load the build projects.
settings
- The settings. Never null.void projectsLoaded(Build build)
Called when the projects for the build have been created from the settings. None of the projects have been evaluated.
build
- The build which has been loaded. Never null.void projectsEvaluated(Build build)
Called when all projects for the build have been evaluated. The project objects are fully configured and are ready to use to populate the task graph.
build
- The build which has been evaluated. Never null.void taskGraphPopulated(TaskExecutionGraph graph)
Called when the task graph for the build has been populated. The task graph is fully configured and is ready to use to execute the tasks which make up the build.
graph
- The task graph. Never null.void buildFinished(BuildResult result)
Called when the build is completed. All selected tasks have been executed.
result
- The result of the build. Never null.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |