Package org.gradle.api.invocation
Interface BuildInvocationDetails
-
public interface BuildInvocationDetails
Provides some useful information about the build invocation that triggered this build.An instance of the type can be injected into a task or plugin by annotating a public constructor or method with
javax.inject.Inject
.public class MyPlugin implements Plugin<Project> { // injection into a constructor @javax.inject.Inject public MyPlugin(BuildInvocationDetails invocationDetails) {} public void apply(Project project) { } }
- Since:
- 5.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getBuildStartedTime()
The wall-clock time in millis that the build was started.
-