Package io.quarkus.maven.dependency
Interface ArtifactKey
- All Known Implementing Classes:
AppArtifactKey
,ArtifactKey
,GACT
public interface ArtifactKey
-
Method Summary
Modifier and TypeMethodDescriptionstatic ArtifactKey
fromString
(String s) static ArtifactKey
Creates an artifact key that consists of an artifact's groupId and artifactId.static ArtifactKey
Deprecated, for removal: This API element is subject to removal in a future version.static ArtifactKey
Deprecated, for removal: This API element is subject to removal in a future version.in favor ofof(String, String, String, String)
Creates an artifact key for a given groupId:artifactId:classifier:typegetType()
static ArtifactKey
default String
-
Method Details
-
fromString
-
of
-
ga
Creates an artifact key that consists of an artifact's groupId and artifactId. The classifier and type will be left empty.- Parameters:
groupId
- artifact groupIdartifactId
- artifact id- Returns:
- artifact key that consists of an artifact's groupId and artifactId
-
gac
@Deprecated(forRemoval=true) static ArtifactKey gac(String groupId, String artifactId, String classifier) Deprecated, for removal: This API element is subject to removal in a future version.Creates an artifact key that consists of groupId:artifactId:classifer and anull
type.- Parameters:
groupId
- artifact groupIdartifactId
- artifact idclassifier
- artifact classifier- Returns:
- artifact key
-
gact
@Deprecated(forRemoval=true) static ArtifactKey gact(String groupId, String artifactId, String classifier, String type) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofof(String, String, String, String)
Creates an artifact key for a given groupId:artifactId:classifier:type- Parameters:
groupId
- artifact groupIdartifactId
- artifact idclassifier
- artifact classifiertype
- artifact type- Returns:
- artifact key
-
getGroupId
String getGroupId() -
getArtifactId
String getArtifactId() -
getClassifier
String getClassifier() -
getType
String getType() -
toGacString
-
null
type.