diff --git a/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/AbstractGeneratorMojo.java b/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/AbstractGeneratorMojo.java index 758a215..18957dd 100644 --- a/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/AbstractGeneratorMojo.java +++ b/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/AbstractGeneratorMojo.java @@ -67,21 +67,23 @@ public abstract class AbstractGeneratorMojo protected String goalPrefix; /** - * The names of extractors to use. + * The role names of mojo extractors to use. *

- * If not set, all extractors will be used. If set to an empty extractor name, no extractors + * If not set, all mojo extractors will be used. If set to an empty extractor name, no mojo extractors * will be used. *

* Example: *

*

-     *  <!-- Use all extractors -->
+     *  <!-- Use all mojo extractors -->
      *  <extractors/>
-     *  <!-- Use no extractors -->
+     *  
+     *  <!-- Use no mojo extractors -->
      *  <extractors>
      *      <extractor/>
      *  </extractors>
-     *  <!-- Use only bsh extractor -->
+     *  
+     *  <!-- Use only bsh mojo extractor -->
      *  <extractors>
      *      <extractor>bsh</extractor>
      *  </extractors>
diff --git a/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/PluginReport.java b/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/PluginReport.java
index e997dbc..df1c223 100644
--- a/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/PluginReport.java
+++ b/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/PluginReport.java
@@ -93,17 +93,17 @@ public class PluginReport
      * Specify some requirements to execute this plugin.
      * Example:
      * 
-     * <requirements>
- * <maven>2.0</maven>
- * <jdk>1.4</jdk>
- * <memory>256m</memory>
- * <diskSpace>1m</diskSpace>
- * <others>
- * <property>
- * <name>SVN</name>
- * <value>1.4.6</value>
- * </property>
- * </others>
+ * <requirements> + * <maven>2.0</maven> + * <jdk>1.4</jdk> + * <memory>256m</memory> + * <diskSpace>1m</diskSpace> + * <others> + * <property> + * <name>SVN</name> + * <value>1.4.6</value> + * </property> + * </others> * </requirements> *
*