fixed typos

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1215443 13f79535-47bb-0310-9956-ffa450edef68
master
Herve Boutemy 2011-12-17 08:38:31 +00:00
parent c5d1e65728
commit ec993bc2de
1 changed files with 16 additions and 16 deletions

View File

@ -20,7 +20,7 @@ package org.apache.maven.tools.plugin.extractor.java;
*/ */
/** /**
* List all Javadoc annotations used to describe a Mojo. * List of all Javadoc annotations used to describe a java Mojo.
* *
* @author <a href="mailto:vincent.siveton@gmail.com">Vincent Siveton</a> * @author <a href="mailto:vincent.siveton@gmail.com">Vincent Siveton</a>
* @version $Id$ * @version $Id$
@ -60,7 +60,7 @@ public interface JavaMojoAnnotation
* <br/> * <br/>
* <b>Note</b>: Should be defined in a Mojo Type. * <b>Note</b>: Should be defined in a Mojo Type.
* <br/> * <br/>
* <b>Note</b>: Mojo's description is auto-detect. * <b>Note</b>: Mojo's description is auto-detected.
*/ */
String DESCRIPTION = "description"; String DESCRIPTION = "description";
@ -81,7 +81,7 @@ public interface JavaMojoAnnotation
String EXECUTE_GOAL = "goal"; String EXECUTE_GOAL = "goal";
/** /**
* The Mojo will be invoke in a parallel lifecycle. * The Mojo will be invoked in a parallel lifecycle.
* <br/> * <br/>
* Refer to <code>&#64;execute lifecycle="&lt;lifecycleId&gt;"</code>. * Refer to <code>&#64;execute lifecycle="&lt;lifecycleId&gt;"</code>.
* <br/> * <br/>
@ -90,7 +90,7 @@ public interface JavaMojoAnnotation
String EXECUTE_LIFECYCLE = "lifecycle"; String EXECUTE_LIFECYCLE = "lifecycle";
/** /**
* The Mojo will be invoke in a parallel lifecycle, ending at the given phase. * The Mojo will be invoked in a parallel lifecycle, ending at the given phase.
* <br/> * <br/>
* Refer to <code>&#64;execute phase="&lt;phaseName&gt;"</code>. * Refer to <code>&#64;execute phase="&lt;phaseName&gt;"</code>.
* <br/> * <br/>
@ -123,7 +123,7 @@ public interface JavaMojoAnnotation
* <br/> * <br/>
* <b>Note</b>: Should be defined in a Mojo Type. * <b>Note</b>: Should be defined in a Mojo Type.
* <br/> * <br/>
* <b>Note</b>: Mojo's implementation is auto-detect. * <b>Note</b>: Mojo's implementation is auto-detected.
*/ */
String IMPLEMENTATION = "implementation"; String IMPLEMENTATION = "implementation";
@ -150,12 +150,12 @@ public interface JavaMojoAnnotation
* <br/> * <br/>
* <b>Note</b>: Should be defined in a Mojo Type. * <b>Note</b>: Should be defined in a Mojo Type.
* <br/> * <br/>
* <b>Note</b>: Mojo's implementation is auto-detect. * <b>Note</b>: Mojo's implementation is auto-detected.
*/ */
String LANGUAGE = "language"; String LANGUAGE = "language";
/** /**
* Specifies the execution strategy * Specifies the execution strategy.
* <br/> * <br/>
* Refer to <code>&#64;attainAlways</code>. * Refer to <code>&#64;attainAlways</code>.
* <br/> * <br/>
@ -172,8 +172,8 @@ public interface JavaMojoAnnotation
/** /**
* Flags this Mojo as requiring the dependencies in the specified scope (or an implied scope) to be resolved * Flags this Mojo as requiring the dependencies in the specified scope (or an implied scope) to be resolved
* before it can execute. Currently supports <code>compile</code>, <code>runtime</code>, and * before it can execute. Currently supports <code>compile</code>, <code>runtime</code>,
* <code>test</code> scopes. * <code>compile+runtime</code> and <code>test</code> scopes.
* <br/> * <br/>
* Refer to <code>&#64;requiresDependencyResolution &lt;requiredScope&gt;</code>. * Refer to <code>&#64;requiresDependencyResolution &lt;requiredScope&gt;</code>.
* <br/> * <br/>
@ -183,8 +183,8 @@ public interface JavaMojoAnnotation
/** /**
* Flags this Mojo as requiring the dependencies in the specified scope (or an implied scope) to be collected * Flags this Mojo as requiring the dependencies in the specified scope (or an implied scope) to be collected
* before it can execute. Currently supports <code>compile</code>, <code>runtime</code>, and * before it can execute. Currently supports <code>compile</code>, <code>runtime</code>,
* <code>test</code> scopes. * <code>compile+runtime</code> and <code>test</code> scopes.
* <br/> * <br/>
* Refer to <code>&#64;requiresDependencyCollection &lt;requiredScope&gt;</code>. * Refer to <code>&#64;requiresDependencyCollection &lt;requiredScope&gt;</code>.
* <br/> * <br/>
@ -228,7 +228,7 @@ public interface JavaMojoAnnotation
String REQUIRES_REPORTS = "requiresReports"; String REQUIRES_REPORTS = "requiresReports";
/** /**
* Indicates that this mojo is thread-safe and can be run in parallel * Indicates that this mojo is thread-safe and can be run in parallel.
* *
* <b>Note</b>: Should be defined in a Mojo Type. * <b>Note</b>: Should be defined in a Mojo Type.
*/ */
@ -240,7 +240,7 @@ public interface JavaMojoAnnotation
// ---------------------------------------------------------------------- // ----------------------------------------------------------------------
/** /**
* Populates the field with an instance of a Plexus component. This is like declaring a requirement in a * Populate the field with an instance of a Plexus component. This is like declaring a requirement in a
* Plexus component. * Plexus component.
* <br/> * <br/>
* Refer to <code>&#64;component ...</code>. * Refer to <code>&#64;component ...</code>.
@ -332,7 +332,7 @@ public interface JavaMojoAnnotation
String READONLY = "readonly"; String READONLY = "readonly";
/** /**
* Whether this parameter is required for the Mojo to function * Specifies that this parameter is required for the Mojo to function.
* <br/> * <br/>
* Refer to <code>&#64;required</code>. * Refer to <code>&#64;required</code>.
* <br/> * <br/>