Package org.apache.maven.plugin.prefix
Interface PluginPrefixResult
public interface PluginPrefixResult
Describes the result of a plugin prefix resolution request.
- Since:
- 3.0
- Author:
- Benjamin Bentmann
- 
Method SummaryModifier and TypeMethodDescriptionThe resolved artifact id for the plugin.The resolved group id for the plugin.org.eclipse.aether.repository.ArtifactRepositoryThe repository from which the plugin prefix was resolved.
- 
Method Details- 
getGroupIdString getGroupId()The resolved group id for the plugin.- Returns:
- The resolved group id for the plugin, never null.
 
- 
getArtifactIdString getArtifactId()The resolved artifact id for the plugin.- Returns:
- The resolved artifact id for the plugin, never null.
 
- 
getRepositoryorg.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 nullif the prefix was resolved from the supplied POM.
 
 
-