Package org.gradle.api.artifacts
Interface DependencyArtifact
-
public interface DependencyArtifactAn
An artifact is an (immutable) value object.Artifactrepresents an artifact included in aDependency.
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_TYPE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetClassifier()Returns the classifier of this artifact.StringgetExtension()Returns the extension of this artifact.StringgetName()Returns the name of this artifact.StringgetType()Returns the type of this artifact.StringgetUrl()Returns an URL under which this artifact can be retrieved.voidsetClassifier(String classifier)Sets the classifier of this artifact.voidsetExtension(String extension)Sets the extension of this artifact.voidsetName(String name)Sets the name of this artifact.voidsetType(String type)Sets the type of this artifact.voidsetUrl(String url)Sets the URL for this artifact.
-
-
-
Field Detail
-
DEFAULT_TYPE
static final String DEFAULT_TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
String getName()
Returns the name of this artifact.
-
setName
void setName(String name)
Sets the name of this artifact.
-
getType
String getType()
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()
-
setType
void setType(String type)
Sets the type of this artifact.
-
getExtension
String getExtension()
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:
getType()
-
setExtension
void setExtension(String extension)
Sets the extension of this artifact.
-
getClassifier
String getClassifier()
Returns the classifier of this artifact.
-
setClassifier
void setClassifier(String classifier)
Sets the classifier of this artifact.
-
getUrl
String getUrl()
Returns an URL under which this artifact can be retrieved. If not specified the user repositories are used for retrieving.
-
setUrl
void setUrl(String url)
Sets the URL for this artifact.
-
-