From a6b7edd34245c2bd35e443441e7febd4660e340e Mon Sep 17 00:00:00 2001 From: Dennis Lundberg Date: Sat, 21 Jun 2008 22:42:41 +0000 Subject: [PATCH] o Fix typos. git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@670267 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/site/apt/examples/generate-descriptor.apt | 4 ++-- .../src/site/apt/examples/generate-help.apt | 2 +- .../src/site/apt/examples/generate-report.apt | 2 +- maven-plugin-plugin/src/site/apt/index.apt | 6 +++--- .../src/site/apt/multiple-language-support.apt | 8 ++++---- maven-plugin-plugin/src/site/apt/usage.apt | 10 +++++----- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/maven-plugin-plugin/src/site/apt/examples/generate-descriptor.apt b/maven-plugin-plugin/src/site/apt/examples/generate-descriptor.apt index 324399e..71bb8c7 100644 --- a/maven-plugin-plugin/src/site/apt/examples/generate-descriptor.apt +++ b/maven-plugin-plugin/src/site/apt/examples/generate-descriptor.apt @@ -25,7 +25,7 @@ Configuring Generation of Plugin Descriptor - To configure the generation of the plugin descriptor, add the following to the project's pom: + To configure the generation of the plugin descriptor, add the following to the project's POM: +-----+ @@ -62,7 +62,7 @@ mvn archetype:create \ -DarchetypeArtifactId=maven-archetype-mojo ----- - The generated plugin descriptor generated by <<>> should be: + The plugin descriptor generated by <<>> should be: ----- diff --git a/maven-plugin-plugin/src/site/apt/examples/generate-help.apt b/maven-plugin-plugin/src/site/apt/examples/generate-help.apt index dec2e29..1525674 100644 --- a/maven-plugin-plugin/src/site/apt/examples/generate-help.apt +++ b/maven-plugin-plugin/src/site/apt/examples/generate-help.apt @@ -25,7 +25,7 @@ Configuring Generation of Help Mojo - To configure the generation of an <<>> Mojo, add the following to the project's pom: + To configure the generation of a <<>> Mojo, add the following to the project's POM: +-----+ diff --git a/maven-plugin-plugin/src/site/apt/examples/generate-report.apt b/maven-plugin-plugin/src/site/apt/examples/generate-report.apt index 48ae355..edbd88c 100644 --- a/maven-plugin-plugin/src/site/apt/examples/generate-report.apt +++ b/maven-plugin-plugin/src/site/apt/examples/generate-report.apt @@ -25,7 +25,7 @@ Configuring Generation of Documentation Reports - To configure the generation of the documentation reports, add the following to the project's pom: + To configure the generation of the documentation reports, add the following to the project's POM: +-----+ diff --git a/maven-plugin-plugin/src/site/apt/index.apt b/maven-plugin-plugin/src/site/apt/index.apt index 8ba6245..b0bc4dd 100644 --- a/maven-plugin-plugin/src/site/apt/index.apt +++ b/maven-plugin-plugin/src/site/apt/index.apt @@ -28,7 +28,7 @@ Maven Plugin Plugin The Maven Plugin Plugin is used to create a Maven plugin descriptor for any {{{http://maven.apache.org/general.html#What_is_a_Mojo}Mojo}}'s found in the source tree, to include in the JAR. It is also used to generate report files for the Mojos as well as for updating the plugin registry, the artifact - metadata and a generic help goal. + metadata and generating a generic help goal. * Goals Overview @@ -47,7 +47,7 @@ Maven Plugin Plugin metadata to the project's artifact, for subsequent installation and deployment. The first use-case for this is to add the LATEST metadata (which is plugin-specific) for shipping alongside the plugin's artifact. - * {{{helpmojo-mojo.html}plugin:helpmojo}} generates an help mojo which describes all project mojos. + * {{{helpmojo-mojo.html}plugin:helpmojo}} generates a help mojo which describes all project mojos. [] @@ -57,7 +57,7 @@ Maven Plugin Plugin * Examples - The following example shows how to use the Plugin Plugin in more advanced usecases: + The following examples shows how to use the Plugin Plugin in more advanced usecases: * {{{examples/generate-descriptor.html}Configuring Generation of Plugin Descriptor}} diff --git a/maven-plugin-plugin/src/site/apt/multiple-language-support.apt b/maven-plugin-plugin/src/site/apt/multiple-language-support.apt index 1098898..a041ac9 100644 --- a/maven-plugin-plugin/src/site/apt/multiple-language-support.apt +++ b/maven-plugin-plugin/src/site/apt/multiple-language-support.apt @@ -27,14 +27,14 @@ *Abstract - The Plugin plugin needs to be refactored in order to support multiple mojo + The Plugin Plugin needs to be refactored in order to support multiple mojo implementation languages. This document will detail the steps needed to add this functionality. *Current Status - The plugin plugin currently calls out to a set of generators in the - maven-plugin-tools library, which in turn uses qdox to generate various things + The Plugin Plugin currently calls out to a set of generators in the + maven-plugin-tools library, which in turn uses QDox to generate various things based on annotations in the java source code. *Refactored Design @@ -47,4 +47,4 @@ centrally aggregated by the generator-manager. After all generators have run, the generator-manager will call another class (depending on what it's meant to produce) to take all the aggregated mojo descriptors and produce a result - (such as plugin.xml file for the project). \ No newline at end of file + (such as <<>> file for the project). \ No newline at end of file diff --git a/maven-plugin-plugin/src/site/apt/usage.apt b/maven-plugin-plugin/src/site/apt/usage.apt index 0a28a3c..681e74d 100644 --- a/maven-plugin-plugin/src/site/apt/usage.apt +++ b/maven-plugin-plugin/src/site/apt/usage.apt @@ -26,8 +26,8 @@ Usage - The Plugin Plugin is generally used for Maven 2 plugins. Its mojos are bound to different phases in the build life cycle. - So when you execute a specific phase, the Plugin Plugin mojos bound to it are also executed. Aside from this, each goal can + The Plugin Plugin is generally used for Maven 2 plugins. Its goals are bound to different phases in the build life cycle. + So when you execute a specific phase, the Plugin Plugin goals bound to it are also executed. Aside from this, each goal can also be explicitly executed from the command line. * The <<>> Goal @@ -41,7 +41,7 @@ Usage mvn package +-----+ - You will see that the plugin.xml file is generated in the <<>> directory of your project. The file is + You will see that the <<>> file is generated in the <<>> directory of your project. The file is also bundled in the generated jar file. To explicitly execute the <<>> goal, type the following in the command line: @@ -71,7 +71,7 @@ mvn plugin:xdoc mvn install +-----+ - you will see that the version of the plugin in the plugin-registry.xml is changed to the same version of the plugin + you will see that the version of the plugin in the <<>> is changed to the same version of the plugin that you have just installed. You can also explicitly execute the <<>> goal by executing @@ -93,7 +93,7 @@ mvn package * The <<>> Goal - To generate an <<>> for the mojos of your plugin, execute the following on the command line: + To generate a <<>> for the mojos of your plugin, execute the following on the command line: +-----+ mvn plugin:helpmojo