Package io.quarkus.maven.dependency
Interface ArtifactKey
-
- All Known Implementing Classes:
AppArtifactKey,GACT
public interface ArtifactKey
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static ArtifactKeyfromString(String s)static ArtifactKeyga(String groupId, String artifactId)static ArtifactKeygac(String groupId, String artifactId, String classifier)static ArtifactKeygact(String groupId, String artifactId, String classifier, String type)StringgetArtifactId()StringgetClassifier()StringgetGroupId()StringgetType()default StringtoGacString()
-
-
-
Method Detail
-
fromString
static ArtifactKey fromString(String s)
-
ga
static ArtifactKey ga(String groupId, String artifactId)
-
gac
static ArtifactKey gac(String groupId, String artifactId, String classifier)
-
gact
static ArtifactKey gact(String groupId, String artifactId, String classifier, String type)
-
getGroupId
String getGroupId()
-
getArtifactId
String getArtifactId()
-
getClassifier
String getClassifier()
-
getType
String getType()
-
toGacString
default String toGacString()
-
-