Package | Description |
---|---|
org.eclipse.aether |
The primary API of the
RepositorySystem and its functionality. |
org.eclipse.aether.artifact |
The definition of an artifact, that is the primary entity managed by the repository system.
|
org.eclipse.aether.internal.impl |
The various sub components that collectively implement the repository system.
|
org.eclipse.aether.util.artifact |
Utilities around artifacts and artifact type registries.
|
Modifier and Type | Method and Description |
---|---|
ArtifactType |
DefaultRepositorySystemSession.NullArtifactTypeRegistry.get(java.lang.String typeId) |
Modifier and Type | Class and Description |
---|---|
class |
DefaultArtifactType
A simple artifact type.
|
Modifier and Type | Method and Description |
---|---|
ArtifactType |
ArtifactTypeRegistry.get(java.lang.String typeId)
Gets the artifact type with the specified identifier.
|
Constructor and Description |
---|
DefaultArtifact(java.lang.String groupId,
java.lang.String artifactId,
java.lang.String classifier,
java.lang.String extension,
java.lang.String version,
ArtifactType type)
Creates a new artifact with the specified coordinates.
|
DefaultArtifact(java.lang.String groupId,
java.lang.String artifactId,
java.lang.String classifier,
java.lang.String extension,
java.lang.String version,
java.util.Map<java.lang.String,java.lang.String> properties,
ArtifactType type)
Creates a new artifact with the specified coordinates and properties.
|
Modifier and Type | Field and Description |
---|---|
private java.util.Map<java.lang.String,ArtifactType> |
CachingArtifactTypeRegistry.types |
Modifier and Type | Method and Description |
---|---|
ArtifactType |
CachingArtifactTypeRegistry.get(java.lang.String typeId) |
Modifier and Type | Field and Description |
---|---|
private java.util.Map<java.lang.String,ArtifactType> |
SimpleArtifactTypeRegistry.types |
Modifier and Type | Method and Description |
---|---|
ArtifactType |
SimpleArtifactTypeRegistry.get(java.lang.String typeId) |
ArtifactType |
OverlayArtifactTypeRegistry.get(java.lang.String typeId) |
Modifier and Type | Method and Description |
---|---|
DefaultArtifactTypeRegistry |
DefaultArtifactTypeRegistry.add(ArtifactType type)
Adds the specified artifact type to the registry.
|
SimpleArtifactTypeRegistry |
SimpleArtifactTypeRegistry.add(ArtifactType type)
Adds the specified artifact type to the registry.
|
OverlayArtifactTypeRegistry |
OverlayArtifactTypeRegistry.add(ArtifactType type)
Adds the specified artifact type to the registry.
|