Class ArtifactCoordinates
- java.lang.Object
-
- org.apache.jackrabbit.filevault.maven.packaging.ArtifactCoordinates
-
public class ArtifactCoordinates extends Object
Coordinates addressing a Maven artifact. Can generate an Aether artifact which can be used to retrieve it from a local or remote repository.
-
-
Constructor Summary
Constructors Constructor Description ArtifactCoordinates()
ArtifactCoordinates(String coordinates)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
set(String coordinates)
org.eclipse.aether.artifact.Artifact
toArtifact()
-
-
-
Constructor Detail
-
ArtifactCoordinates
public ArtifactCoordinates()
-
ArtifactCoordinates
public ArtifactCoordinates(String coordinates)
- Parameters:
coordinates
- The artifact coordinates in the format<groupId>:<artifactId>[:<extension>[:<classifier>]]:<version>
, must not benull
.
-
-
Method Detail
-
set
public void set(String coordinates)
-
toArtifact
public org.eclipse.aether.artifact.Artifact toArtifact()
-
-