fixed typos
git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1215443 13f79535-47bb-0310-9956-ffa450edef68master
parent
c5d1e65728
commit
ec993bc2de
|
|
@ -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>@execute lifecycle="<lifecycleId>"</code>.
|
* Refer to <code>@execute lifecycle="<lifecycleId>"</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>@execute phase="<phaseName>"</code>.
|
* Refer to <code>@execute phase="<phaseName>"</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>@attainAlways</code>.
|
* Refer to <code>@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>@requiresDependencyResolution <requiredScope></code>.
|
* Refer to <code>@requiresDependencyResolution <requiredScope></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>@requiresDependencyCollection <requiredScope></code>.
|
* Refer to <code>@requiresDependencyCollection <requiredScope></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>@component ...</code>.
|
* Refer to <code>@component ...</code>.
|
||||||
|
|
@ -281,7 +281,7 @@ public interface JavaMojoAnnotation
|
||||||
String PARAMETER_ALIAS = "alias";
|
String PARAMETER_ALIAS = "alias";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This defines the default value to be injected into this parameter of the Mojo at buildtime.
|
* This defines the default value to be injected into this parameter of the Mojo at build time.
|
||||||
* <br/>
|
* <br/>
|
||||||
* Refer to <code>@parameter default-value="..."</code>.
|
* Refer to <code>@parameter default-value="..."</code>.
|
||||||
* <br/>
|
* <br/>
|
||||||
|
|
@ -291,7 +291,7 @@ public interface JavaMojoAnnotation
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This defines the expression used to calculate the value to be injected into this parameter of the
|
* This defines the expression used to calculate the value to be injected into this parameter of the
|
||||||
* Mojo at buildtime.
|
* Mojo at build time.
|
||||||
* <br/>
|
* <br/>
|
||||||
* Refer to <code>@parameter expression="..."</code>.
|
* Refer to <code>@parameter expression="..."</code>.
|
||||||
* <br/>
|
* <br/>
|
||||||
|
|
@ -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>@required</code>.
|
* Refer to <code>@required</code>.
|
||||||
* <br/>
|
* <br/>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue