diff --git a/maven-site/src/site/xdoc/developers/mojo-api-specification.xml b/maven-site/src/site/xdoc/developers/mojo-api-specification.xml index ed9b75b709..ea4b958809 100644 --- a/maven-site/src/site/xdoc/developers/mojo-api-specification.xml +++ b/maven-site/src/site/xdoc/developers/mojo-api-specification.xml @@ -91,15 +91,13 @@
  • - void setLog( org.apache.maven.monitor.logging.Log ) + void setLog( org.apache.maven.monitor.logging.Log )

    Inject a standard Maven logging mechanism to allow this Mojo to communicate events and feedback to the user.

  • - - void execute() throws org.apache.maven.plugin.MojoExecutionException - + void execute() throws org.apache.maven.plugin.MojoExecutionException

    Perform whatever build-process behavior this Mojo implements. This is the main trigger for the Mojo inside the Maven system, and allows the Mojo to communicate fatal errors by throwing an @@ -130,7 +128,7 @@

  • - public void setLog( org.apache.maven.monitor.logging.Log ) + public void setLog( org.apache.maven.monitor.logging.Log )

    [IMPLEMENTED] @@ -139,7 +137,7 @@ to communicate events and feedback to the user.

  • - protected Log getLog() + protected Log getLog()

    [IMPLEMENTED]

    @@ -148,7 +146,7 @@
  • - void execute() throws org.apache.maven.plugin.MojoExecutionException + void execute() throws org.apache.maven.plugin.MojoExecutionException

    [ABSTRACT] @@ -175,73 +173,73 @@ Method Summary:

  • - void debug( java.lang.CharSequence ) + void debug( java.lang.CharSequence )

    Send a message to the user in the debug error level.

  • - void debug( java.lang.CharSequence, java.lang.Throwable ) + void debug( java.lang.CharSequence, java.lang.Throwable )

    Send a message (and accompanying exception) to the user in the debug error level. The error's stacktrace will be output when this error level is enabled.

  • - void debug( java.lang.Throwable ) + void debug( java.lang.Throwable )

    Send an exception to the user in the debug error level. The stack trace for this exception will be output when this error level is enabled.

  • - void info( java.lang.CharSequence ) + void info( java.lang.CharSequence )

    Send a message to the user in the info error level.

  • - void info( java.lang.CharSequence, java.lang.Throwable ) + void info( java.lang.CharSequence, java.lang.Throwable )

    Send a message (and accompanying exception) to the user in the info error level. The error's stacktrace will be output when this error level is enabled.

  • - void info( java.lang.CharSequence ) + void info( java.lang.CharSequence )

    Send an exception to the user in the info error level. The stack trace for this exception will be output when this error level is enabled.

  • - void warn( java.lang.CharSequence ) + void warn( java.lang.CharSequence )

    Send a message to the user in the warn error level.

  • - void warn( java.lang.CharSequence, java.lang.Throwable ) + void warn( java.lang.CharSequence, java.lang.Throwable )

    Send a message (and accompanying exception) to the user in the warn error level. The error's stacktrace will be output when this error level is enabled.

  • - void warn( java.lang.CharSequence ) + void warn( java.lang.CharSequence )

    Send an exception to the user in the warn error level. The stack trace for this exception will be output when this error level is enabled.

  • - void error( java.lang.CharSequence ) + void error( java.lang.CharSequence )

    Send a message to the user in the error error level.

  • - void error( java.lang.CharSequence, java.lang.Throwable ) + void error( java.lang.CharSequence, java.lang.Throwable )

    Send a message (and accompanying exception) to the user in the error error level. The error's stacktrace will be output when this error level is enabled.

  • - void error( java.lang.CharSequence ) + void error( java.lang.CharSequence )

    Send an exception to the user in the error error level. The stack trace for this exception will be output when this error level is enabled.

    @@ -264,17 +262,17 @@ element name along with a javadoc annotation (if applicable) supporting that piece of the plugin descriptor. A couple of examples are: someElement - (@annotation parameterName="parameterValue") or + (@annotation parameterName="parameterValue") or someOtherElement (@annotation <rawAnnotationValue>).

    The plugin descriptor must be provided in a jar resource with the path: META-INF/maven/plugin.xml, and it must contain the following: