You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by de...@apache.org on 2011/03/30 21:57:45 UTC

svn commit: r1087061 - in /maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples: changes-file-validation.apt.vm specifying-mail-sender.apt.vm using-a-custom-announcement-template.apt.vm

Author: dennisl
Date: Wed Mar 30 19:57:44 2011
New Revision: 1087061

URL: http://svn.apache.org/viewvc?rev=1087061&view=rev
Log:
Fix typos.

Modified:
    maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples/changes-file-validation.apt.vm
    maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples/specifying-mail-sender.apt.vm
    maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples/using-a-custom-announcement-template.apt.vm

Modified: maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples/changes-file-validation.apt.vm
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples/changes-file-validation.apt.vm?rev=1087061&r1=1087060&r2=1087061&view=diff
==============================================================================
--- maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples/changes-file-validation.apt.vm (original)
+++ maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples/changes-file-validation.apt.vm Wed Mar 30 19:57:44 2011
@@ -3,7 +3,7 @@
  ------
  Olivier Lamy
  ------
- 2010-12-16
+ 2011-03-30
  ------
 
  ~~ Licensed to the Apache Software Foundation (ASF) under one
@@ -29,19 +29,20 @@
 
 Validate Your changes.xml File
 
- Since 2.1, a {{{../changes-validate-mojo.html}mojo}} is
- provided to validate your changes file.
+ Since 2.1, a {{{../changes-validate-mojo.html}goal}} is
+ provided to validate your <<<changes.xml>>> file.
 
- You can attach this mojo to the <<<pre-site>>> phase if you want the
+ You can attach this goal to the <<<pre-site>>> phase if you want the
  validation to be performed automatically when you generate the site.
 
 * Configuring the Plugin
 
- First you must configure the plugin and tell it to validate your changes file.
+ First you must configure the plugin and tell it to validate your <<<changes.xml>>> file.
 
 +-----------------+
 <project>
   ...
+  <build>
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
@@ -63,6 +64,7 @@ Validate Your changes.xml File
         </executions>
       </plugin>
     </plugins>
+  </build>
   ...
 </project>
 +-----------------+

Modified: maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples/specifying-mail-sender.apt.vm
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples/specifying-mail-sender.apt.vm?rev=1087061&r1=1087060&r2=1087061&view=diff
==============================================================================
--- maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples/specifying-mail-sender.apt.vm (original)
+++ maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples/specifying-mail-sender.apt.vm Wed Mar 30 19:57:44 2011
@@ -3,7 +3,7 @@
  ------
  Stephane Nicoll
  ------
- 16 September 2007
+ 2011-03-30
  ------
 
  ~~ Licensed to the Apache Software Foundation (ASF) under one
@@ -29,7 +29,7 @@
 
 Specifying the Mail Sender
 
- The identify used to send the announcement mail can be customized. It can be
+ The identity used to send the announcement mail can be customized. It can be
  either a member of the <<<\<developers\>>>> section of the POM or it can be
  specified explicitly with the <<<\<mailSender\>>>> parameter of the plugin.
 
@@ -50,7 +50,7 @@ Specifying the Mail Sender
     ...
   </developers>
   ...
-  <reporting>
+  <build>
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
@@ -61,7 +61,7 @@ Specifying the Mail Sender
         </configuration>
       </plugin>
     </plugins>
-  </reporting>
+  </build>
   ...
 </project>
 +-----------------+
@@ -72,7 +72,7 @@ Specifying the Mail Sender
  changes between releases.
 
 +-----------------+
-mvn -Dchanges.fromDeveloperId=jsmith announcement-mail
+mvn -Dchanges.fromDeveloperId=jsmith changes:announcement-mail
 +-----------------+
 
 
@@ -84,7 +84,7 @@ mvn -Dchanges.fromDeveloperId=jsmith ann
 +-----------------+
 <project>
   ...
-  <reporting>
+  <build>
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
@@ -98,7 +98,7 @@ mvn -Dchanges.fromDeveloperId=jsmith ann
         </configuration>
       </plugin>
     </plugins>
-  </reporting>
+  </build>
   ...
 </project>
 +-----------------+

Modified: maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples/using-a-custom-announcement-template.apt.vm
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples/using-a-custom-announcement-template.apt.vm?rev=1087061&r1=1087060&r2=1087061&view=diff
==============================================================================
--- maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples/using-a-custom-announcement-template.apt.vm (original)
+++ maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples/using-a-custom-announcement-template.apt.vm Wed Mar 30 19:57:44 2011
@@ -3,7 +3,7 @@
  ------
  Dennis Lundberg
  ------
- 7 July 2007
+ 2011-03-30
  ------
 
  ~~ Licensed to the Apache Software Foundation (ASF) under one
@@ -29,7 +29,7 @@
 
 Using a Custom Announcement Template
 
- The announcement goal uses a {{{http://velocity.apache.org/}Velocity}}
+ The <<<announcement-generate>>> goal uses a {{{http://velocity.apache.org/}Velocity}}
  template to create an announcement. If you want to, you can create your own
  custom template.
 
@@ -45,7 +45,7 @@ Using a Custom Announcement Template
 +-----------------+
 <project>
   ...
-  <reporting>
+  <build>
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
@@ -57,7 +57,7 @@ Using a Custom Announcement Template
         </configuration>
       </plugin>
     </plugins>
-  </reporting>
+  </build>
   ...
 </project>
 +-----------------+