Package org.apache.maven.api
Interface DependencyCoordinates
- All Superinterfaces:
ArtifactCoordinates
- All Known Implementing Classes:
DefaultDependencyCoordinates
ArtifactCoordinates
completed with information about how the artifact will be used.
This information include the dependency type (main classes, test classes, etc.),
a scope (compile-time, run-time etc.), an obligation (whether the dependency
is optional or mandatory), and possible exclusions for transitive dependencies.
The version and the obligation
may not be defined precisely.- Since:
- 4.0.0
-
Method Summary
Methods inherited from interface org.apache.maven.api.ArtifactCoordinates
getArtifactId, getClassifier, getExtension, getGroupId, getId, getVersionConstraint
-
Method Details
-
getType
Returns the type of the dependency. A dependency can be a JAR file, a modular-JAR if it is intended to be placed on the module-path, a JAR containing test classes, etc.- Returns:
- the type of the dependency
-
getScope
Returns the time at which the dependency will be used. If may be, for example, at compile time only, at run time or at test time.- Returns:
- the time at which the dependency will be used
-
getOptional
Returns whether the dependency is optional, mandatory or of unspecified obligation.- Returns:
- the obligation, or
null
if unspecified
-
getExclusions
Returns transitive dependencies to exclude.- Returns:
- transitive dependencies to exclude
-