Package org.gradle.api.artifacts
Interface ArtifactIdentifier
Deprecated.
Will be removed in Gradle 9.0.
The identifier for a module artifact.
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Returns the classifier of this artifact, if any.Deprecated.Returns the extension of this artifact.Deprecated.Returns the identifier of the module that owns this artifact.getName()
Deprecated.Returns the name of this artifact.getType()
Deprecated.Returns the type of this artifact.
-
Method Details
-
getModuleVersionIdentifier
ModuleVersionIdentifier getModuleVersionIdentifier()Deprecated.Returns the identifier of the module that owns this artifact. -
getName
String getName()Deprecated.Returns the name of this artifact. -
getType
String getType()Deprecated.Returns the type of this artifact. Often the type is the same as the extension, but sometimes this is not the case. For example for an ivy XML module descriptor, the type is ivy and the extension is xml.- See Also:
-
getExtension
Deprecated.Returns the extension of this artifact. Often the extension is the same as the type, but sometimes this is not the case. For example for an ivy XML module descriptor, the type is ivy and the extension is xml.- See Also:
-
getClassifier
Deprecated.Returns the classifier of this artifact, if any.
-