Package com.gradle.scan.eventmodel.maven
Class MvnDependencyResolutionData_1_0
java.lang.Object
com.gradle.scan.eventmodel.maven.MvnDependencyResolutionData_1_0
- All Implemented Interfaces:
com.gradle.scan.eventmodel.EventData
@MavenVersion(since="3.3.1")
@MavenExtensionVersion(since="1.4")
public class MvnDependencyResolutionData_1_0
extends Object
implements com.gradle.scan.eventmodel.EventData
An
EventData
which represents all dependency data for a given build.
Zero or one
events may be published.MvnDependencyResolutionData_1_0
-
Field Summary
Modifier and TypeFieldDescriptionfinal List
<MvnComponent_1_0> All components resolved in the build.final List
<MvnComponentDependency_1_0> All dependencies attempted and resolved in the build.All resolution failure ids.final List
<MvnComponentIdentity_1_0> Identities of all requested and resolved components resolved in the build. -
Constructor Summary
ConstructorDescriptionMvnDependencyResolutionData_1_0
(List<MvnComponentIdentity_1_0> identities, List<MvnComponentDependency_1_0> dependencies, List<MvnComponent_1_0> components, List<Long> failureIds) -
Method Summary
-
Field Details
-
identities
Identities of all requested and resolved components resolved in the build.The list is never
null
but can be empty when no dependency data is available. -
dependencies
All dependencies attempted and resolved in the build.The list is never
null
but can be empty when no dependency data is available. -
components
All components resolved in the build.The list is never
null
but can be empty when no dependency data is available. -
failureIds
All resolution failure ids.Index into
MvnExceptionData_1_0.exceptions
.
-
-
Constructor Details
-
MvnDependencyResolutionData_1_0
public MvnDependencyResolutionData_1_0(List<MvnComponentIdentity_1_0> identities, List<MvnComponentDependency_1_0> dependencies, List<MvnComponent_1_0> components, List<Long> failureIds)
-
-
Method Details