Package org.apache.maven.plugin
Interface MavenPluginManager
- All Known Implementing Classes:
DefaultMavenPluginManager
public interface MavenPluginManager
Provides basic services to manage Maven plugins and their mojos. This component is kept general in its design such
that the plugins/mojos can be used in arbitrary contexts. In particular, the mojos can be used for ordinary build
plugins as well as special purpose plugins like reports.
- Since:
- 3.0
-
Method Summary
Modifier and TypeMethodDescriptionvoid
checkPrerequisites
(PluginDescriptor pluginDescriptor) Verifies that the specified plugin's prerequisites are met.void
checkRequiredMavenVersion
(PluginDescriptor pluginDescriptor) Deprecated.<T> T
getConfiguredMojo
(Class<T> mojoInterface, MavenSession session, MojoExecution mojoExecution) Looks up the mojo for the specified mojo execution and populates its parameters from the configuration given by the mojo execution.getMojoDescriptor
(Plugin plugin, String goal, List<org.eclipse.aether.repository.RemoteRepository> repositories, org.eclipse.aether.RepositorySystemSession session) Retrieves the descriptor for the specified plugin goal from the plugin's main artifact.getPluginDescriptor
(Plugin plugin, List<org.eclipse.aether.repository.RemoteRepository> repositories, org.eclipse.aether.RepositorySystemSession session) Retrieves the descriptor for the specified plugin from its main artifact.void
releaseMojo
(Object mojo, MojoExecution mojoExecution) Releases the specified mojo back to the container.setupExtensionsRealm
(MavenProject project, Plugin plugin, org.eclipse.aether.RepositorySystemSession session) Sets up class realm for the specified build extensions plugin.void
setupPluginRealm
(PluginDescriptor pluginDescriptor, MavenSession session, ClassLoader parent, List<String> imports, org.eclipse.aether.graph.DependencyFilter filter) Sets up the class realm for the specified plugin.
-
Method Details
-
getPluginDescriptor
PluginDescriptor getPluginDescriptor(Plugin plugin, List<org.eclipse.aether.repository.RemoteRepository> repositories, org.eclipse.aether.RepositorySystemSession session) throws PluginResolutionException, PluginDescriptorParsingException, InvalidPluginDescriptorException Retrieves the descriptor for the specified plugin from its main artifact.- Parameters:
plugin
- The plugin whose descriptor should be retrieved, must not benull
.repositories
- The plugin repositories to use for resolving the plugin's main artifact, must not benull
.session
- The repository session to use for resolving the plugin's main artifact, must not benull
.- Returns:
- The plugin descriptor, never
null
. - Throws:
PluginResolutionException
PluginDescriptorParsingException
InvalidPluginDescriptorException
-
getMojoDescriptor
MojoDescriptor getMojoDescriptor(Plugin plugin, String goal, List<org.eclipse.aether.repository.RemoteRepository> repositories, org.eclipse.aether.RepositorySystemSession session) throws MojoNotFoundException, PluginResolutionException, PluginDescriptorParsingException, InvalidPluginDescriptorException Retrieves the descriptor for the specified plugin goal from the plugin's main artifact.- Parameters:
plugin
- The plugin whose mojo descriptor should be retrieved, must not benull
.goal
- The simple name of the mojo whose descriptor should be retrieved, must not benull
.repositories
- The plugin repositories to use for resolving the plugin's main artifact, must not benull
.session
- The repository session to use for resolving the plugin's main artifact, must not benull
.- Returns:
- The mojo descriptor, never
null
. - Throws:
MojoNotFoundException
PluginResolutionException
PluginDescriptorParsingException
InvalidPluginDescriptorException
-
checkRequiredMavenVersion
@Deprecated void checkRequiredMavenVersion(PluginDescriptor pluginDescriptor) throws PluginIncompatibleException Deprecated.UsecheckPrerequisites(PluginDescriptor)
instead.Verifies the specified plugin is compatible with the current Maven runtime.- Parameters:
pluginDescriptor
- The descriptor of the plugin to check, must not benull
.- Throws:
PluginIncompatibleException
-
checkPrerequisites
Verifies that the specified plugin's prerequisites are met.- Parameters:
pluginDescriptor
- The descriptor of the plugin to check, must not benull
.- Throws:
PluginIncompatibleException
- Since:
- 4.0.0
-
setupPluginRealm
void setupPluginRealm(PluginDescriptor pluginDescriptor, MavenSession session, ClassLoader parent, List<String> imports, org.eclipse.aether.graph.DependencyFilter filter) throws PluginResolutionException, PluginContainerException Sets up the class realm for the specified plugin. Both the class realm and the plugin artifacts that constitute it will be stored in the plugin descriptor.- Parameters:
pluginDescriptor
- The plugin descriptor in which to save the class realm and the plugin artifacts, must not benull
.session
- The build session from which to pick the current project and repository settings, must not benull
.parent
- The parent class realm for the plugin, may benull
to use the Maven core realm.imports
- The packages/types to import from the parent realm, may benull
.filter
- The filter used to exclude certain plugin dependencies, may benull
.- Throws:
PluginResolutionException
PluginContainerException
-
setupExtensionsRealm
ExtensionRealmCache.CacheRecord setupExtensionsRealm(MavenProject project, Plugin plugin, org.eclipse.aether.RepositorySystemSession session) throws PluginManagerException Sets up class realm for the specified build extensions plugin.- Throws:
PluginManagerException
- Since:
- 3.3.0
-
getConfiguredMojo
<T> T getConfiguredMojo(Class<T> mojoInterface, MavenSession session, MojoExecution mojoExecution) throws PluginConfigurationException, PluginContainerException Looks up the mojo for the specified mojo execution and populates its parameters from the configuration given by the mojo execution. The mojo/plugin descriptor associated with the mojo execution provides the class realm to look up the mojo from. Warning: The returned mojo instance must be released viareleaseMojo(Object, MojoExecution)
when the mojo is no longer needed to free any resources allocated for it.- Parameters:
mojoInterface
- The component role of the mojo, must not benull
.session
- The build session in whose context the mojo will be used, must not benull
.mojoExecution
- The mojo execution to retrieve the mojo for, must not benull
.- Returns:
- The ready-to-execute mojo, never
null
. - Throws:
PluginConfigurationException
PluginContainerException
-
releaseMojo
Releases the specified mojo back to the container.- Parameters:
mojo
- The mojo to release, may benull
.mojoExecution
- The mojo execution the mojo was originally retrieved for, must not benull
.
-
checkPrerequisites(PluginDescriptor)
instead.