@Incubating public interface BuildInvocationDetails
 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) {
     }
 }
 | Modifier and Type | Method | Description | 
|---|---|---|
| long | getBuildStartedTime() | The wall-clock time in millis that the build was started. |