Package org.apache.maven.plugin
package org.apache.maven.plugin
-
ClassDescriptionAbstract class to provide most of the infrastructure required to implement a
Mojo
except for the execute method.
The implementation should have aMojo
annotation with the name of the goal:Base exception.Interface to allowMojos
to communicate with each othersMojos
, other than project's source root and project's attachment.
The plugin manager would pull the context out of the plugin container context, and populate it into the Mojo.This interface forms the contract required forMojos
to interact with theMaven
infrastructure.
It features anexecute()
method, which triggers the Mojo's build-process behavior, and can throw a MojoExecutionException or MojoFailureException if error conditions occur.
Also included is thesetLog(...)
method, which simply allows Maven to inject a logging mechanism which will allow the Mojo to communicate to the outside world through standard Maven channels.An exception occurring during the execution of a plugin.
Throwing this exception causes a "BUILD ERROR" message to be displayed.An exception occurring during the execution of a plugin (such as a compilation failure).
Throwing this exception causes a "BUILD FAILURE" message to be displayed.MojoNotFoundException