public final class DefaultArtifact extends AbstractArtifact
| Constructor and Description |
|---|
DefaultArtifact(String coords)
Creates a new artifact with the specified coordinates.
|
DefaultArtifact(String coords,
Map<String,String> properties)
Creates a new artifact with the specified coordinates and properties.
|
DefaultArtifact(String groupId,
String artifactId,
String extension,
String version)
Creates a new artifact with the specified coordinates and no classifier.
|
DefaultArtifact(String groupId,
String artifactId,
String classifier,
String extension,
String version)
Creates a new artifact with the specified coordinates.
|
DefaultArtifact(String groupId,
String artifactId,
String classifier,
String extension,
String version,
ArtifactType type)
Creates a new artifact with the specified coordinates.
|
DefaultArtifact(String groupId,
String artifactId,
String classifier,
String extension,
String version,
Map<String,String> properties,
ArtifactType type)
Creates a new artifact with the specified coordinates and properties.
|
DefaultArtifact(String groupId,
String artifactId,
String classifier,
String extension,
String version,
Map<String,String> properties,
File file)
Creates a new artifact with the specified coordinates, properties and file.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getArtifactId()
Gets the artifact identifier of this artifact, for example "maven-model".
|
String |
getBaseVersion()
Gets the base version of this artifact, for example "1.0-SNAPSHOT".
|
String |
getClassifier()
Gets the classifier of this artifact, for example "sources".
|
String |
getExtension()
Gets the (file) extension of this artifact, for example "jar".
|
File |
getFile()
Gets the file of this artifact.
|
String |
getGroupId()
Gets the group identifier of this artifact, for example "org.apache.maven".
|
Map<String,String> |
getProperties()
Gets the properties of this artifact.
|
String |
getProperty(String key,
String defaultValue)
Gets the specified property.
|
String |
getVersion()
Gets the version of this artifact, for example "1.0-20100529-1213".
|
boolean |
isSnapshot()
Determines whether this artifact uses a snapshot version.
|
Artifact |
setFile(File file)
Sets the file of the artifact.
|
Artifact |
setProperties(Map<String,String> properties)
Sets the properties for the artifact.
|
Artifact |
setVersion(String version)
Sets the version of this artifact.
|
equals, hashCode, isSnapshot, newInstance, toBaseVersion, toStringpublic DefaultArtifact(String coords)
jar and classifier to an empty string.coords - The artifact coordinates in the format
<groupId>:<artifactId>[:<extension>[:<classifier>]]:<version>, must not be null.public DefaultArtifact(String coords, Map<String,String> properties)
jar and classifier to an empty string.coords - The artifact coordinates in the format
<groupId>:<artifactId>[:<extension>[:<classifier>]]:<version>, must not be null.properties - The artifact properties, may be null.public DefaultArtifact(String groupId, String artifactId, String extension, String version)
null for any of the
coordinates is equivalent to specifying an empty string.groupId - The group identifier of the artifact, may be null.artifactId - The artifact identifier of the artifact, may be null.extension - The file extension of the artifact, may be null.version - The version of the artifact, may be null.public DefaultArtifact(String groupId, String artifactId, String classifier, String extension, String version)
null for any of the coordinates is
equivalent to specifying an empty string.groupId - The group identifier of the artifact, may be null.artifactId - The artifact identifier of the artifact, may be null.classifier - The classifier of the artifact, may be null.extension - The file extension of the artifact, may be null.version - The version of the artifact, may be null.public DefaultArtifact(String groupId, String artifactId, String classifier, String extension, String version, ArtifactType type)
null for any of the coordinates is
equivalent to specifying an empty string. The optional artifact type provided to this constructor will be used to
determine the artifact's classifier and file extension if the corresponding arguments for this constructor are
null.groupId - The group identifier of the artifact, may be null.artifactId - The artifact identifier of the artifact, may be null.classifier - The classifier of the artifact, may be null.extension - The file extension of the artifact, may be null.version - The version of the artifact, may be null.type - The artifact type from which to query classifier, file extension and properties, may be null.public DefaultArtifact(String groupId, String artifactId, String classifier, String extension, String version, Map<String,String> properties, ArtifactType type)
null for any of the
coordinates is equivalent to specifying an empty string. The optional artifact type provided to this constructor
will be used to determine the artifact's classifier and file extension if the corresponding arguments for this
constructor are null. If the artifact type specifies properties, those will get merged with the
properties passed directly into the constructor, with the latter properties taking precedence.groupId - The group identifier of the artifact, may be null.artifactId - The artifact identifier of the artifact, may be null.classifier - The classifier of the artifact, may be null.extension - The file extension of the artifact, may be null.version - The version of the artifact, may be null.properties - The properties of the artifact, may be null if none.type - The artifact type from which to query classifier, file extension and properties, may be null.public DefaultArtifact(String groupId, String artifactId, String classifier, String extension, String version, Map<String,String> properties, File file)
null for any of the
coordinates is equivalent to specifying an empty string.groupId - The group identifier of the artifact, may be null.artifactId - The artifact identifier of the artifact, may be null.classifier - The classifier of the artifact, may be null.extension - The file extension of the artifact, may be null.version - The version of the artifact, may be null.properties - The properties of the artifact, may be null if none.file - The resolved file of the artifact, may be null.public String getGroupId()
Artifactnull.public String getArtifactId()
Artifactnull.public String getBaseVersion()
ArtifactArtifact.getVersion(), the
base version will always refer to the unresolved meta version.null.public String getVersion()
Artifactnull.public Artifact setVersion(String version)
ArtifactsetVersion in interface ArtifactsetVersion in class AbstractArtifactversion - The version of this artifact, may be null or empty.null.public boolean isSnapshot()
Artifacttrue if the artifact is a snapshot, false otherwise.public String getClassifier()
Artifactnull.public String getExtension()
Artifactnull.public File getFile()
Artifactnull if the artifact isn't resolved.public Artifact setFile(File file)
ArtifactsetFile in interface ArtifactsetFile in class AbstractArtifactfile - The file of the artifact, may be nullnull.public String getProperty(String key, String defaultValue)
Artifactkey - The name of the property, must not be null.defaultValue - The default value to return in case the property is not set, may be null.public Map<String,String> getProperties()
Artifactnull.public Artifact setProperties(Map<String,String> properties)
ArtifactsetProperties in interface ArtifactsetProperties in class AbstractArtifactproperties - The properties for the artifact, may be null.null.Copyright © 2010-2015 Sonatype, Inc.. All Rights Reserved.