Package org.apache.maven.plugin.prefix
Interface PluginPrefixResult
public interface PluginPrefixResult
Describes the result of a plugin prefix resolution request.
- Since:
- 3.0
-
Method Summary
Modifier and TypeMethodDescriptionThe resolved artifact id for the plugin.The resolved group id for the plugin.org.eclipse.aether.repository.ArtifactRepository
The repository from which the plugin prefix was resolved.
-
Method Details
-
getGroupId
String getGroupId()The resolved group id for the plugin.- Returns:
- The resolved group id for the plugin, never
null
.
-
getArtifactId
String getArtifactId()The resolved artifact id for the plugin.- Returns:
- The resolved artifact id for the plugin, never
null
.
-
getRepository
org.eclipse.aether.repository.ArtifactRepository getRepository()The repository from which the plugin prefix was resolved.- Returns:
- The repository from which the plugin prefix was resolved or
null
if the prefix was resolved from the supplied POM.
-