You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2012/05/06 23:54:31 UTC

svn commit: r816161 [2/3] - in /websites/production/maventest/content/plugins/maven-antrun-plugin-latest: ./ examples/ tasks/

Modified: websites/production/maventest/content/plugins/maven-antrun-plugin-latest/index.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-antrun-plugin-latest/index.html (original)
+++ websites/production/maventest/content/plugins/maven-antrun-plugin-latest/index.html Sun May  6 21:54:30 2012
@@ -22,7 +22,7 @@
           <meta name="author" content="Kenney Westerhof, Franz Allan Valencia See" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
+<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -63,7 +63,7 @@
                 <a href="../index.html">Plugins</a>
                 &gt;
       
-                <a href="http://maven.apache.org/plugins/maven-antrun-plugin" class="externalLink">Maven AntRun Plugin</a>
+                <a href="http://maven.apache.org/plugins/maven-antrun-plugin/" class="externalLink">Maven AntRun Plugin</a>
                   </div>
             <div class="xright">            <a href="http://ant.apache.org/" class="externalLink">Ant</a>
             
@@ -74,8 +74,8 @@
             
   
     
-            &nbsp;| Last Published: 2010-05-25
-              &nbsp;| Version: 1.4
+            &nbsp;| Last Published: 2010-09-15
+              &nbsp;| Version: 1.5
             </div>
       <div class="clear">
         <hr/>
@@ -122,98 +122,13 @@
           </li>
               
     <li class="none">
-                    <a href="examples/tasksAttributes.html">Using tasks Attributes</a>
+                    <a href="examples/tasksAttributes.html">Using target attributes</a>
           </li>
               
     <li class="none">
                     <a href="examples/customTasks.html">Using tasks not included in Ant's default jar</a>
           </li>
           </ul>
-              <h5>Project Documentation</h5>
-            <ul>
-              
-                
-              
-            
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-              
-            <li class="expanded">
-                    <a href="project-info.html">Project Information</a>
-                  <ul>
-                  
-    <li class="none">
-              <strong>About</strong>
-        </li>
-                  
-    <li class="none">
-                    <a href="integration.html">Continuous Integration</a>
-          </li>
-                  
-    <li class="none">
-                    <a href="dependencies.html">Dependencies</a>
-          </li>
-                  
-    <li class="none">
-                    <a href="issue-tracking.html">Issue Tracking</a>
-          </li>
-                  
-    <li class="none">
-                    <a href="mail-lists.html">Mailing Lists</a>
-          </li>
-                  
-    <li class="none">
-                    <a href="plugin-management.html">Plugin Management</a>
-          </li>
-                  
-    <li class="none">
-                    <a href="license.html">Project License</a>
-          </li>
-                  
-    <li class="none">
-                    <a href="plugins.html">Project Plugins</a>
-          </li>
-                  
-    <li class="none">
-                    <a href="project-summary.html">Project Summary</a>
-          </li>
-                  
-    <li class="none">
-                    <a href="team-list.html">Project Team</a>
-          </li>
-                  
-    <li class="none">
-                    <a href="source-repository.html">Source Repository</a>
-          </li>
-              </ul>
-        </li>
-              
-                
-              
-      
-              
-        <li class="collapsed">
-                    <a href="project-reports.html">Project Reports</a>
-                </li>
-          </ul>
               <h5>Maven Projects</h5>
             <ul>
               
@@ -278,21 +193,21 @@
       <div id="contentBox">
         <div class="section"><h2>Maven AntRun Plugin</h2>
 <p>This plugin provides the ability to run Ant tasks from within Maven 2. You can even embed your Ant scripts in the POM!</p>
-<p>It is <i>not</i> the intention of this plugin to provide a means of polluting the POM, so it's encouraged to move all your Ant tasks to a <tt>build.xml</tt> file and just call it from the POM using Ant's <a class="externalLink" href="http://ant.apache.org/manual/CoreTasks/ant.html">&lt;ant/&gt; task</a>.</p>
+<p>It is <i>not</i> the intention of this plugin to provide a means of polluting the POM, so it's encouraged to move all your Ant tasks to a <tt>build.xml</tt> file and just call it from the POM using Ant's <a href="http://ant.apache.org/manual/CoreTasks/ant.html" class="externalLink">&lt;ant/&gt; task</a>.</p>
 <p>One of the main purposes of this plugin is to facilitate the migration from Ant based projects to Maven 2. Some projects may not currently be able to migrate because they depend on custom build functionality that Maven 2 doesn't provide by default.</p>
 <div class="section"><h3>Goals Overview</h3>
 <ul><li><a href="./run-mojo.html">antrun:run</a> runs Ant tasks for Maven 2.</li>
 </ul>
 </div>
 <div class="section"><h3>Usage</h3>
-<p>General instructions on how to use the AntRun Plugin can be found on the <a href="./usage.html">usage page</a>. Some more specific use cases are described in the examples given below. Last but not least, users occasionally contribute additional examples, tips or errata to the <a class="externalLink" href="http://docs.codehaus.org/display/MAVENUSER/Antrun+Plugin">plugin's wiki page</a>.</p>
+<p>General instructions on how to use the AntRun Plugin can be found on the <a href="./usage.html">usage page</a>. Some more specific use cases are described in the examples given below. Last but not least, users occasionally contribute additional examples, tips or errata to the <a href="http://docs.codehaus.org/display/MAVENUSER/Antrun+Plugin" class="externalLink">plugin's wiki page</a>.</p>
 <p>In case you still have questions regarding the plugin's usage, please have a look at the <a href="./faq.html">FAQ</a> and feel free to contact the <a href="./mail-lists.html">user mailing list</a>. The posts to the mailing list are archived and could already contain the answer to your question as part of an older thread. Hence, it is also worth browsing/searching the <a href="./mail-lists.html">mail archive</a>.</p>
-<p>If you feel like the plugin is missing a feature or has a defect, you can fill a feature request or bug report in our <a href="./issue-tracking.html">issue tracker</a>. When creating a new issue, please provide a comprehensive description of your concern. Especially for fixing bugs it is crucial that the developers can reproduce your problem. For this reason, entire debug logs, POMs or most preferably little demo projects attached to the issue are very much appreciated. Of course, patches are welcome, too. Contributors can check out the project from our <a href="./source-repository.html">source repository</a> and will find supplementary information in the <a class="externalLink" href="http://maven.apache.org/guides/development/guide-helping.html">guide to helping with Maven</a>.</p>
+<p>If you feel like the plugin is missing a feature or has a defect, you can fill a feature request or bug report in our <a href="./issue-tracking.html">issue tracker</a>. When creating a new issue, please provide a comprehensive description of your concern. Especially for fixing bugs it is crucial that the developers can reproduce your problem. For this reason, entire debug logs, POMs or most preferably little demo projects attached to the issue are very much appreciated. Of course, patches are welcome, too. Contributors can check out the project from our <a href="./source-repository.html">source repository</a> and will find supplementary information in the <a href="http://maven.apache.org/guides/development/guide-helping.html" class="externalLink">guide to helping with Maven</a>.</p>
 </div>
 <div class="section"><h3>Examples</h3>
 <p>To provide you with better understanding on some usages of the Maven AntRun Plugin, you can take a look into the following examples:</p>
 <ul><li><a href="./examples/classpaths.html">Referencing the Maven Classpaths</a></li>
-<li><a href="./examples/tasksAttributes.html">Using <tt>&lt;tasks/&gt;</tt> Attributes</a></li>
+<li><a href="./examples/tasksAttributes.html">Using <tt>&lt;target/&gt;</tt> Attributes</a></li>
 <li><a href="./examples/customTasks.html">Using tasks not included in Ant's default jar</a></li>
 </ul>
 </div>

Modified: websites/production/maventest/content/plugins/maven-antrun-plugin-latest/integration.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-antrun-plugin-latest/integration.html (original)
+++ websites/production/maventest/content/plugins/maven-antrun-plugin-latest/integration.html Sun May  6 21:54:30 2012
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
+<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -73,8 +73,8 @@
             
   
     
-            &nbsp;| Last Published: 2010-05-25
-              &nbsp;| Version: 1.4
+            &nbsp;| Last Published: 2010-09-15
+              &nbsp;| Version: 1.5
             </div>
       <div class="clear">
         <hr/>
@@ -121,7 +121,7 @@
           </li>
               
     <li class="none">
-                    <a href="examples/tasksAttributes.html">Using tasks Attributes</a>
+                    <a href="examples/tasksAttributes.html">Using target attributes</a>
           </li>
               
     <li class="none">
@@ -276,10 +276,10 @@
     <div id="bodyColumn">
       <div id="contentBox">
         <a name="Overview"></a><div class="section"><h2>Overview</h2>
-This project uses <a class="externalLink" href="https://hudson.dev.java.net/">Hudson</a>.</div>
+This project uses <a href="https://hudson.dev.java.net/" class="externalLink">Hudson</a>.</div>
 <a name="Access"></a><div class="section"><h2>Access</h2>
 <p>The following is a link to the continuous integration system used by the project.</p>
-<div class="source"><pre><a class="externalLink" href="http://grid.sonatype.org/ci">http://grid.sonatype.org/ci</a></pre>
+<div class="source"><pre><a href="http://grid.sonatype.org/ci" class="externalLink">http://grid.sonatype.org/ci</a></pre>
 </div>
 </div>
 <a name="Notifiers"></a><div class="section"><h2>Notifiers</h2>

Modified: websites/production/maventest/content/plugins/maven-antrun-plugin-latest/issue-tracking.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-antrun-plugin-latest/issue-tracking.html (original)
+++ websites/production/maventest/content/plugins/maven-antrun-plugin-latest/issue-tracking.html Sun May  6 21:54:30 2012
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
+<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -73,8 +73,8 @@
             
   
     
-            &nbsp;| Last Published: 2010-05-25
-              &nbsp;| Version: 1.4
+            &nbsp;| Last Published: 2010-09-15
+              &nbsp;| Version: 1.5
             </div>
       <div class="clear">
         <hr/>
@@ -121,7 +121,7 @@
           </li>
               
     <li class="none">
-                    <a href="examples/tasksAttributes.html">Using tasks Attributes</a>
+                    <a href="examples/tasksAttributes.html">Using target attributes</a>
           </li>
               
     <li class="none">
@@ -276,10 +276,10 @@
     <div id="bodyColumn">
       <div id="contentBox">
         <a name="Overview"></a><div class="section"><h2>Overview</h2>
-This project uses <a class="externalLink" href="http://www.atlassian.com/software/jira">JIRA</a> a J2EE-based, issue tracking and project management application.</div>
+This project uses <a href="http://www.atlassian.com/software/jira" class="externalLink">JIRA</a> a J2EE-based, issue tracking and project management application.</div>
 <a name="Issue_Tracking"></a><div class="section"><h2>Issue Tracking</h2>
 <p>Issues, bugs, and feature requests should be submitted to the following issue tracking system for this project.</p>
-<div class="source"><pre><a class="externalLink" href="http://jira.codehaus.org/browse/MANTRUN">http://jira.codehaus.org/browse/MANTRUN</a></pre>
+<div class="source"><pre><a href="http://jira.codehaus.org/browse/MANTRUN" class="externalLink">http://jira.codehaus.org/browse/MANTRUN</a></pre>
 </div>
 </div>
 

Modified: websites/production/maventest/content/plugins/maven-antrun-plugin-latest/license.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-antrun-plugin-latest/license.html (original)
+++ websites/production/maventest/content/plugins/maven-antrun-plugin-latest/license.html Sun May  6 21:54:30 2012
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
+<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -73,8 +73,8 @@
             
   
     
-            &nbsp;| Last Published: 2010-05-25
-              &nbsp;| Version: 1.4
+            &nbsp;| Last Published: 2010-09-15
+              &nbsp;| Version: 1.5
             </div>
       <div class="clear">
         <hr/>
@@ -121,7 +121,7 @@
           </li>
               
     <li class="none">
-                    <a href="examples/tasksAttributes.html">Using tasks Attributes</a>
+                    <a href="examples/tasksAttributes.html">Using target attributes</a>
           </li>
               
     <li class="none">

Modified: websites/production/maventest/content/plugins/maven-antrun-plugin-latest/mail-lists.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-antrun-plugin-latest/mail-lists.html (original)
+++ websites/production/maventest/content/plugins/maven-antrun-plugin-latest/mail-lists.html Sun May  6 21:54:30 2012
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
+<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -73,8 +73,8 @@
             
   
     
-            &nbsp;| Last Published: 2010-05-25
-              &nbsp;| Version: 1.4
+            &nbsp;| Last Published: 2010-09-15
+              &nbsp;| Version: 1.5
             </div>
       <div class="clear">
         <hr/>
@@ -121,7 +121,7 @@
           </li>
               
     <li class="none">
-                    <a href="examples/tasksAttributes.html">Using tasks Attributes</a>
+                    <a href="examples/tasksAttributes.html">Using target attributes</a>
           </li>
               
     <li class="none">
@@ -285,130 +285,130 @@
 <th>Other Archives</th>
 </tr>
 <tr class="b"><td>Maven User List</td>
-<td><a class="externalLink" href="mailto:users-subscribe@maven.apache.org">Subscribe</a></td>
-<td><a class="externalLink" href="mailto:users-unsubscribe@maven.apache.org">Unsubscribe</a></td>
-<td><a class="externalLink" href="mailto:users@maven.apache.org">Post</a></td>
-<td><a class="externalLink" href="http://mail-archives.apache.org/mod_mbox/maven-users">mail-archives.apache.org</a></td>
-<td><a class="externalLink" href="http://www.mail-archive.com/users@maven.apache.org/">www.mail-archive.com</a></td>
+<td><a href="mailto:users-subscribe@maven.apache.org" class="externalLink">Subscribe</a></td>
+<td><a href="mailto:users-unsubscribe@maven.apache.org" class="externalLink">Unsubscribe</a></td>
+<td><a href="mailto:users@maven.apache.org" class="externalLink">Post</a></td>
+<td><a href="http://mail-archives.apache.org/mod_mbox/maven-users" class="externalLink">mail-archives.apache.org</a></td>
+<td><a href="http://www.mail-archive.com/users@maven.apache.org/" class="externalLink">www.mail-archive.com</a></td>
 </tr>
 <tr class="a"><td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
-<td><a class="externalLink" href="http://old.nabble.com/Maven---Users-f178.html">old.nabble.com</a></td>
+<td><a href="http://old.nabble.com/Maven---Users-f178.html" class="externalLink">old.nabble.com</a></td>
 </tr>
 <tr class="b"><td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
-<td><a class="externalLink" href="http://maven.users.markmail.org/">maven.users.markmail.org</a></td>
+<td><a href="http://maven.users.markmail.org/" class="externalLink">maven.users.markmail.org</a></td>
 </tr>
 <tr class="a"><td>Maven Developer List</td>
-<td><a class="externalLink" href="mailto:dev-subscribe@maven.apache.org">Subscribe</a></td>
-<td><a class="externalLink" href="mailto:dev-unsubscribe@maven.apache.org">Unsubscribe</a></td>
-<td><a class="externalLink" href="mailto:dev@maven.apache.org">Post</a></td>
-<td><a class="externalLink" href="http://mail-archives.apache.org/mod_mbox/maven-dev">mail-archives.apache.org</a></td>
-<td><a class="externalLink" href="http://www.mail-archive.com/dev@maven.apache.org/">www.mail-archive.com</a></td>
+<td><a href="mailto:dev-subscribe@maven.apache.org" class="externalLink">Subscribe</a></td>
+<td><a href="mailto:dev-unsubscribe@maven.apache.org" class="externalLink">Unsubscribe</a></td>
+<td><a href="mailto:dev@maven.apache.org" class="externalLink">Post</a></td>
+<td><a href="http://mail-archives.apache.org/mod_mbox/maven-dev" class="externalLink">mail-archives.apache.org</a></td>
+<td><a href="http://www.mail-archive.com/dev@maven.apache.org/" class="externalLink">www.mail-archive.com</a></td>
 </tr>
 <tr class="b"><td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
-<td><a class="externalLink" href="http://old.nabble.com/Maven-Developers-f179.html">old.nabble.com</a></td>
+<td><a href="http://old.nabble.com/Maven-Developers-f179.html" class="externalLink">old.nabble.com</a></td>
 </tr>
 <tr class="a"><td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
-<td><a class="externalLink" href="http://maven.dev.markmail.org/">maven.dev.markmail.org</a></td>
+<td><a href="http://maven.dev.markmail.org/" class="externalLink">maven.dev.markmail.org</a></td>
 </tr>
 <tr class="b"><td>Maven Issues List</td>
-<td><a class="externalLink" href="mailto:issues-subscribe@maven.apache.org">Subscribe</a></td>
-<td><a class="externalLink" href="mailto:issues-unsubscribe@maven.apache.org">Unsubscribe</a></td>
+<td><a href="mailto:issues-subscribe@maven.apache.org" class="externalLink">Subscribe</a></td>
+<td><a href="mailto:issues-unsubscribe@maven.apache.org" class="externalLink">Unsubscribe</a></td>
 <td>-</td>
-<td><a class="externalLink" href="http://mail-archives.apache.org/mod_mbox/maven-issues/">mail-archives.apache.org</a></td>
-<td><a class="externalLink" href="http://www.mail-archive.com/issues@maven.apache.org">www.mail-archive.com</a></td>
+<td><a href="http://mail-archives.apache.org/mod_mbox/maven-issues/" class="externalLink">mail-archives.apache.org</a></td>
+<td><a href="http://www.mail-archive.com/issues@maven.apache.org" class="externalLink">www.mail-archive.com</a></td>
 </tr>
 <tr class="a"><td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
-<td><a class="externalLink" href="http://old.nabble.com/Maven---Issues-f15573.html">old.nabble.com</a></td>
+<td><a href="http://old.nabble.com/Maven---Issues-f15573.html" class="externalLink">old.nabble.com</a></td>
 </tr>
 <tr class="b"><td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
-<td><a class="externalLink" href="http://maven.issues.markmail.org/">maven.issues.markmail.org</a></td>
+<td><a href="http://maven.issues.markmail.org/" class="externalLink">maven.issues.markmail.org</a></td>
 </tr>
 <tr class="a"><td>Maven Commits List</td>
-<td><a class="externalLink" href="mailto:commits-subscribe@maven.apache.org">Subscribe</a></td>
-<td><a class="externalLink" href="mailto:commits-unsubscribe@maven.apache.org">Unsubscribe</a></td>
+<td><a href="mailto:commits-subscribe@maven.apache.org" class="externalLink">Subscribe</a></td>
+<td><a href="mailto:commits-unsubscribe@maven.apache.org" class="externalLink">Unsubscribe</a></td>
 <td>-</td>
-<td><a class="externalLink" href="http://mail-archives.apache.org/mod_mbox/maven-dev">mail-archives.apache.org</a></td>
-<td><a class="externalLink" href="http://www.mail-archive.com/commits@maven.apache.org">www.mail-archive.com</a></td>
+<td><a href="http://mail-archives.apache.org/mod_mbox/maven-dev" class="externalLink">mail-archives.apache.org</a></td>
+<td><a href="http://www.mail-archive.com/commits@maven.apache.org" class="externalLink">www.mail-archive.com</a></td>
 </tr>
 <tr class="b"><td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
-<td><a class="externalLink" href="http://old.nabble.com/Maven---Commits-f15575.html">old.nabble.com</a></td>
+<td><a href="http://old.nabble.com/Maven---Commits-f15575.html" class="externalLink">old.nabble.com</a></td>
 </tr>
 <tr class="a"><td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
-<td><a class="externalLink" href="http://maven.commits.markmail.org/">maven.commits.markmail.org</a></td>
+<td><a href="http://maven.commits.markmail.org/" class="externalLink">maven.commits.markmail.org</a></td>
 </tr>
 <tr class="b"><td>Maven Announcements List</td>
-<td><a class="externalLink" href="mailto:announce-subscribe@maven.apache.org">Subscribe</a></td>
-<td><a class="externalLink" href="mailto:announce-unsubscribe@maven.apache.org">Unsubscribe</a></td>
-<td><a class="externalLink" href="mailto:announce@maven.apache.org">Post</a></td>
-<td><a class="externalLink" href="http://mail-archives.apache.org/mod_mbox/maven-announce/">mail-archives.apache.org</a></td>
-<td><a class="externalLink" href="http://www.mail-archive.com/announce@maven.apache.org">www.mail-archive.com</a></td>
+<td><a href="mailto:announce-subscribe@maven.apache.org" class="externalLink">Subscribe</a></td>
+<td><a href="mailto:announce-unsubscribe@maven.apache.org" class="externalLink">Unsubscribe</a></td>
+<td><a href="mailto:announce@maven.apache.org" class="externalLink">Post</a></td>
+<td><a href="http://mail-archives.apache.org/mod_mbox/maven-announce/" class="externalLink">mail-archives.apache.org</a></td>
+<td><a href="http://www.mail-archive.com/announce@maven.apache.org" class="externalLink">www.mail-archive.com</a></td>
 </tr>
 <tr class="a"><td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
-<td><a class="externalLink" href="http://old.nabble.com/Maven-Announcements-f15617.html">old.nabble.com</a></td>
+<td><a href="http://old.nabble.com/Maven-Announcements-f15617.html" class="externalLink">old.nabble.com</a></td>
 </tr>
 <tr class="b"><td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
-<td><a class="externalLink" href="http://maven.announce.markmail.org/">maven.announce.markmail.org</a></td>
+<td><a href="http://maven.announce.markmail.org/" class="externalLink">maven.announce.markmail.org</a></td>
 </tr>
 <tr class="a"><td>Maven Notifications List</td>
-<td><a class="externalLink" href="mailto:notifications-subscribe@maven.apache.org">Subscribe</a></td>
-<td><a class="externalLink" href="mailto:notifications-unsubscribe@maven.apache.org">Unsubscribe</a></td>
+<td><a href="mailto:notifications-subscribe@maven.apache.org" class="externalLink">Subscribe</a></td>
+<td><a href="mailto:notifications-unsubscribe@maven.apache.org" class="externalLink">Unsubscribe</a></td>
 <td>-</td>
-<td><a class="externalLink" href="http://mail-archives.apache.org/mod_mbox/maven-notifications/">mail-archives.apache.org</a></td>
-<td><a class="externalLink" href="http://www.mail-archive.com/notifications@maven.apache.org">www.mail-archive.com</a></td>
+<td><a href="http://mail-archives.apache.org/mod_mbox/maven-notifications/" class="externalLink">mail-archives.apache.org</a></td>
+<td><a href="http://www.mail-archive.com/notifications@maven.apache.org" class="externalLink">www.mail-archive.com</a></td>
 </tr>
 <tr class="b"><td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
-<td><a class="externalLink" href="http://old.nabble.com/Maven---Notifications-f15574.html">old.nabble.com</a></td>
+<td><a href="http://old.nabble.com/Maven---Notifications-f15574.html" class="externalLink">old.nabble.com</a></td>
 </tr>
 <tr class="a"><td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
 <td>-</td>
-<td><a class="externalLink" href="http://maven.notifications.markmail.org/">maven.notifications.markmail.org</a></td>
+<td><a href="http://maven.notifications.markmail.org/" class="externalLink">maven.notifications.markmail.org</a></td>
 </tr>
 </table>
 </div>

Modified: websites/production/maventest/content/plugins/maven-antrun-plugin-latest/plugin-info.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-antrun-plugin-latest/plugin-info.html (original)
+++ websites/production/maventest/content/plugins/maven-antrun-plugin-latest/plugin-info.html Sun May  6 21:54:30 2012
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
+<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -73,8 +73,8 @@
             
   
     
-            &nbsp;| Last Published: 2010-05-25
-              &nbsp;| Version: 1.4
+            &nbsp;| Last Published: 2010-09-15
+              &nbsp;| Version: 1.5
             </div>
       <div class="clear">
         <hr/>
@@ -121,7 +121,7 @@
           </li>
               
     <li class="none">
-                    <a href="examples/tasksAttributes.html">Using tasks Attributes</a>
+                    <a href="examples/tasksAttributes.html">Using target attributes</a>
           </li>
               
     <li class="none">
@@ -285,7 +285,7 @@ to a separate build.xml file and call th
         &lt;plugin&gt;
           &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
           &lt;artifactId&gt;maven-antrun-plugin&lt;/artifactId&gt;
-          &lt;version&gt;1.4&lt;/version&gt;
+          &lt;version&gt;1.5&lt;/version&gt;
         &lt;/plugin&gt;
         ...
       &lt;/plugins&gt;
@@ -295,7 +295,7 @@ to a separate build.xml file and call th
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-antrun-plugin&lt;/artifactId&gt;
-        &lt;version&gt;1.4&lt;/version&gt;
+        &lt;version&gt;1.5&lt;/version&gt;
       &lt;/plugin&gt;
       ...
     &lt;/plugins&gt;
@@ -304,7 +304,7 @@ to a separate build.xml file and call th
 &lt;/project&gt;
 </pre>
 </div>
-<p>For more information, see <a class="externalLink" href="http://maven.apache.org/guides/mini/guide-configuring-plugins.html">&quot;Guide to Configuring Plug-ins&quot;</a></p>
+<p>For more information, see <a href="http://maven.apache.org/guides/mini/guide-configuring-plugins.html" class="externalLink">&quot;Guide to Configuring Plug-ins&quot;</a></p>
 </div>
 </div>
 

Modified: websites/production/maventest/content/plugins/maven-antrun-plugin-latest/plugin-management.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-antrun-plugin-latest/plugin-management.html (original)
+++ websites/production/maventest/content/plugins/maven-antrun-plugin-latest/plugin-management.html Sun May  6 21:54:30 2012
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
+<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -73,8 +73,8 @@
             
   
     
-            &nbsp;| Last Published: 2010-05-25
-              &nbsp;| Version: 1.4
+            &nbsp;| Last Published: 2010-09-15
+              &nbsp;| Version: 1.5
             </div>
       <div class="clear">
         <hr/>
@@ -121,7 +121,7 @@
           </li>
               
     <li class="none">
-                    <a href="examples/tasksAttributes.html">Using tasks Attributes</a>
+                    <a href="examples/tasksAttributes.html">Using target attributes</a>
           </li>
               
     <li class="none">
@@ -281,111 +281,111 @@
 <th>Version</th>
 </tr>
 <tr class="b"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-antrun-plugin">maven-antrun-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-antrun-plugin" class="externalLink">maven-antrun-plugin</a></td>
 <td>1.3</td>
 </tr>
 <tr class="a"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-assembly-plugin">maven-assembly-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-assembly-plugin" class="externalLink">maven-assembly-plugin</a></td>
 <td>2.2-beta-5</td>
 </tr>
 <tr class="b"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-clean-plugin">maven-clean-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-clean-plugin" class="externalLink">maven-clean-plugin</a></td>
 <td>2.3</td>
 </tr>
 <tr class="a"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-compiler-plugin">maven-compiler-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-compiler-plugin" class="externalLink">maven-compiler-plugin</a></td>
 <td>2.0.2</td>
 </tr>
 <tr class="b"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-dependency-plugin">maven-dependency-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-dependency-plugin" class="externalLink">maven-dependency-plugin</a></td>
 <td>2.0</td>
 </tr>
 <tr class="a"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-deploy-plugin">maven-deploy-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-deploy-plugin" class="externalLink">maven-deploy-plugin</a></td>
 <td>2.5</td>
 </tr>
 <tr class="b"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-docck-plugin">maven-docck-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-docck-plugin" class="externalLink">maven-docck-plugin</a></td>
 <td>1.0</td>
 </tr>
 <tr class="a"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-ear-plugin">maven-ear-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-ear-plugin" class="externalLink">maven-ear-plugin</a></td>
 <td>2.3.1</td>
 </tr>
 <tr class="b"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-ejb-plugin">maven-ejb-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-ejb-plugin" class="externalLink">maven-ejb-plugin</a></td>
 <td>2.1</td>
 </tr>
 <tr class="a"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-enforcer-plugin/">maven-enforcer-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-enforcer-plugin/" class="externalLink">maven-enforcer-plugin</a></td>
 <td>1.0-beta-1</td>
 </tr>
 <tr class="b"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-gpg-plugin">maven-gpg-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-gpg-plugin" class="externalLink">maven-gpg-plugin</a></td>
 <td>1.0-alpha-4</td>
 </tr>
 <tr class="a"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-install-plugin">maven-install-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-install-plugin" class="externalLink">maven-install-plugin</a></td>
 <td>2.3</td>
 </tr>
 <tr class="b"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-invoker-plugin">maven-invoker-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-invoker-plugin" class="externalLink">maven-invoker-plugin</a></td>
 <td>1.5</td>
 </tr>
 <tr class="a"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-jar-plugin">maven-jar-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-jar-plugin" class="externalLink">maven-jar-plugin</a></td>
 <td>2.3</td>
 </tr>
 <tr class="b"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-javadoc-plugin">maven-javadoc-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-javadoc-plugin" class="externalLink">maven-javadoc-plugin</a></td>
 <td>2.5</td>
 </tr>
 <tr class="a"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-plugin-plugin">maven-plugin-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-plugin-plugin" class="externalLink">maven-plugin-plugin</a></td>
 <td>2.5.1</td>
 </tr>
 <tr class="b"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-rar-plugin">maven-rar-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-rar-plugin" class="externalLink">maven-rar-plugin</a></td>
 <td>2.2</td>
 </tr>
 <tr class="a"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-release-plugin/">maven-release-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-release-plugin/" class="externalLink">maven-release-plugin</a></td>
 <td>2.0-beta-9</td>
 </tr>
 <tr class="b"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-remote-resources-plugin">maven-remote-resources-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-remote-resources-plugin" class="externalLink">maven-remote-resources-plugin</a></td>
 <td>1.1</td>
 </tr>
 <tr class="a"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-resources-plugin">maven-resources-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-resources-plugin" class="externalLink">maven-resources-plugin</a></td>
 <td>2.4</td>
 </tr>
 <tr class="b"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-scm-plugin">maven-scm-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-scm-plugin" class="externalLink">maven-scm-plugin</a></td>
 <td>1.2</td>
 </tr>
 <tr class="a"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-site-plugin">maven-site-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-site-plugin" class="externalLink">maven-site-plugin</a></td>
 <td>2.0.1</td>
 </tr>
 <tr class="b"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-source-plugin">maven-source-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-source-plugin" class="externalLink">maven-source-plugin</a></td>
 <td>2.1.1</td>
 </tr>
 <tr class="a"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/surefire/maven-surefire-plugin">maven-surefire-plugin</a></td>
+<td><a href="http://maven.apache.org/surefire/maven-surefire-plugin" class="externalLink">maven-surefire-plugin</a></td>
 <td>2.4.3</td>
 </tr>
 <tr class="b"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-war-plugin">maven-war-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-war-plugin" class="externalLink">maven-war-plugin</a></td>
 <td>2.1-alpha-2</td>
 </tr>
 <tr class="a"><td>org.codehaus.modello</td>
-<td><a class="externalLink" href="http://modello.codehaus.org/modello-maven-plugin">modello-maven-plugin</a></td>
+<td><a href="http://modello.codehaus.org/modello-maven-plugin" class="externalLink">modello-maven-plugin</a></td>
 <td>1.1</td>
 </tr>
 <tr class="b"><td>org.codehaus.mojo</td>
-<td><a class="externalLink" href="http://mojo.codehaus.org/clirr-maven-plugin">clirr-maven-plugin</a></td>
+<td><a href="http://mojo.codehaus.org/clirr-maven-plugin" class="externalLink">clirr-maven-plugin</a></td>
 <td>2.2.2</td>
 </tr>
 <tr class="a"><td>org.codehaus.plexus</td>

Modified: websites/production/maventest/content/plugins/maven-antrun-plugin-latest/plugins.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-antrun-plugin-latest/plugins.html (original)
+++ websites/production/maventest/content/plugins/maven-antrun-plugin-latest/plugins.html Sun May  6 21:54:30 2012
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
+<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -73,8 +73,8 @@
             
   
     
-            &nbsp;| Last Published: 2010-05-25
-              &nbsp;| Version: 1.4
+            &nbsp;| Last Published: 2010-09-15
+              &nbsp;| Version: 1.5
             </div>
       <div class="clear">
         <hr/>
@@ -121,7 +121,7 @@
           </li>
               
     <li class="none">
-                    <a href="examples/tasksAttributes.html">Using tasks Attributes</a>
+                    <a href="examples/tasksAttributes.html">Using target attributes</a>
           </li>
               
     <li class="none">
@@ -281,15 +281,15 @@
 <th>Version</th>
 </tr>
 <tr class="b"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-enforcer-plugin/">maven-enforcer-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-enforcer-plugin/" class="externalLink">maven-enforcer-plugin</a></td>
 <td>1.0-beta-1</td>
 </tr>
 <tr class="a"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-plugin-plugin">maven-plugin-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-plugin-plugin" class="externalLink">maven-plugin-plugin</a></td>
 <td>2.6</td>
 </tr>
 <tr class="b"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-remote-resources-plugin">maven-remote-resources-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-remote-resources-plugin" class="externalLink">maven-remote-resources-plugin</a></td>
 <td>1.1</td>
 </tr>
 </table>
@@ -300,11 +300,11 @@
 <th>Version</th>
 </tr>
 <tr class="b"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-plugin-plugin">maven-plugin-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-plugin-plugin" class="externalLink">maven-plugin-plugin</a></td>
 <td>2.6</td>
 </tr>
 <tr class="a"><td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-project-info-reports-plugin">maven-project-info-reports-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-project-info-reports-plugin" class="externalLink">maven-project-info-reports-plugin</a></td>
 <td>2.1.2</td>
 </tr>
 </table>

Modified: websites/production/maventest/content/plugins/maven-antrun-plugin-latest/project-info.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-antrun-plugin-latest/project-info.html (original)
+++ websites/production/maventest/content/plugins/maven-antrun-plugin-latest/project-info.html Sun May  6 21:54:30 2012
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
+<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -73,8 +73,8 @@
             
   
     
-            &nbsp;| Last Published: 2010-05-25
-              &nbsp;| Version: 1.4
+            &nbsp;| Last Published: 2010-09-15
+              &nbsp;| Version: 1.5
             </div>
       <div class="clear">
         <hr/>
@@ -121,7 +121,7 @@
           </li>
               
     <li class="none">
-                    <a href="examples/tasksAttributes.html">Using tasks Attributes</a>
+                    <a href="examples/tasksAttributes.html">Using target attributes</a>
           </li>
               
     <li class="none">
@@ -276,7 +276,7 @@
     <div id="bodyColumn">
       <div id="contentBox">
         <div class="section"><h2>Project Information</h2>
-<p>This document provides an overview of the various documents and links that are part of this project's general information. All of this content is automatically generated by <a class="externalLink" href="http://maven.apache.org">Maven</a> on behalf of the project.</p>
+<p>This document provides an overview of the various documents and links that are part of this project's general information. All of this content is automatically generated by <a href="http://maven.apache.org" class="externalLink">Maven</a> on behalf of the project.</p>
 <div class="section"><h3>Overview</h3>
 <table class="bodyTable"><tr class="a"><th>Document</th>
 <th>Description</th>

Modified: websites/production/maventest/content/plugins/maven-antrun-plugin-latest/project-reports.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-antrun-plugin-latest/project-reports.html (original)
+++ websites/production/maventest/content/plugins/maven-antrun-plugin-latest/project-reports.html Sun May  6 21:54:30 2012
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
+<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -73,8 +73,8 @@
             
   
     
-            &nbsp;| Last Published: 2010-05-25
-              &nbsp;| Version: 1.4
+            &nbsp;| Last Published: 2010-09-15
+              &nbsp;| Version: 1.5
             </div>
       <div class="clear">
         <hr/>
@@ -121,7 +121,7 @@
           </li>
               
     <li class="none">
-                    <a href="examples/tasksAttributes.html">Using tasks Attributes</a>
+                    <a href="examples/tasksAttributes.html">Using target attributes</a>
           </li>
               
     <li class="none">
@@ -236,7 +236,7 @@
     <div id="bodyColumn">
       <div id="contentBox">
         <div class="section"><h2>Generated Reports</h2>
-<p>This document provides an overview of the various reports that are automatically generated by <a class="externalLink" href="http://maven.apache.org">Maven</a> . Each report is briefly described below.</p>
+<p>This document provides an overview of the various reports that are automatically generated by <a href="http://maven.apache.org" class="externalLink">Maven</a> . Each report is briefly described below.</p>
 <div class="section"><h3>Overview</h3>
 <table class="bodyTable"><tr class="a"><th>Document</th>
 <th>Description</th>

Modified: websites/production/maventest/content/plugins/maven-antrun-plugin-latest/project-summary.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-antrun-plugin-latest/project-summary.html (original)
+++ websites/production/maventest/content/plugins/maven-antrun-plugin-latest/project-summary.html Sun May  6 21:54:30 2012
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
+<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -73,8 +73,8 @@
             
   
     
-            &nbsp;| Last Published: 2010-05-25
-              &nbsp;| Version: 1.4
+            &nbsp;| Last Published: 2010-09-15
+              &nbsp;| Version: 1.5
             </div>
       <div class="clear">
         <hr/>
@@ -121,7 +121,7 @@
           </li>
               
     <li class="none">
-                    <a href="examples/tasksAttributes.html">Using tasks Attributes</a>
+                    <a href="examples/tasksAttributes.html">Using target attributes</a>
           </li>
               
     <li class="none">
@@ -287,7 +287,7 @@
 <td>Runs Ant scripts embedded in the POM</td>
 </tr>
 <tr class="b"><td>Homepage</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-antrun-plugin">http://maven.apache.org/plugins/maven-antrun-plugin</a></td>
+<td><a href="http://maven.apache.org/plugins/maven-antrun-plugin" class="externalLink">http://maven.apache.org/plugins/maven-antrun-plugin</a></td>
 </tr>
 </table>
 </div>
@@ -299,7 +299,7 @@
 <td>The Apache Software Foundation</td>
 </tr>
 <tr class="a"><td>URL</td>
-<td><a class="externalLink" href="http://www.apache.org/">http://www.apache.org/</a></td>
+<td><a href="http://www.apache.org/" class="externalLink">http://www.apache.org/</a></td>
 </tr>
 </table>
 </div>
@@ -314,7 +314,7 @@
 <td>maven-antrun-plugin</td>
 </tr>
 <tr class="a"><td>Version</td>
-<td>1.4</td>
+<td>1.5</td>
 </tr>
 <tr class="b"><td>Type</td>
 <td>maven-plugin</td>

Modified: websites/production/maventest/content/plugins/maven-antrun-plugin-latest/run-mojo.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-antrun-plugin-latest/run-mojo.html (original)
+++ websites/production/maventest/content/plugins/maven-antrun-plugin-latest/run-mojo.html Sun May  6 21:54:30 2012
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
+<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -73,8 +73,8 @@
             
   
     
-            &nbsp;| Last Published: 2010-05-25
-              &nbsp;| Version: 1.4
+            &nbsp;| Last Published: 2010-09-15
+              &nbsp;| Version: 1.5
             </div>
       <div class="clear">
         <hr/>
@@ -121,7 +121,7 @@
           </li>
               
     <li class="none">
-                    <a href="examples/tasksAttributes.html">Using tasks Attributes</a>
+                    <a href="examples/tasksAttributes.html">Using target attributes</a>
           </li>
               
     <li class="none">
@@ -231,7 +231,7 @@
       <div id="contentBox">
         <div class="section"><h2><a name="antrun:run"></a>antrun:run</h2>
 <p><strong>Full name</strong>:</p>
-<p>org.apache.maven.plugins:maven-antrun-plugin:1.4:run</p>
+<p>org.apache.maven.plugins:maven-antrun-plugin:1.5:run</p>
 <p><strong>Description</strong>:</p>
 <div>Maven AntRun Mojo. This plugin provides the capability of calling
 Ant tasks from a POM by running the nested ant tasks inside the
@@ -248,38 +248,49 @@ to a separate build.xml file and call th
 <th>Since</th>
 <th>Description</th>
 </tr>
-<tr class="b"><td><strong><a href="#propertyPrefix">propertyPrefix</a></strong></td>
+<tr class="b"><td><strong><a href="#customTaskPrefix">customTaskPrefix</a></strong></td>
 <td><code>String</code></td>
-<td><code>-</code></td>
+<td><code>1.5</code></td>
+<td>The xml tag prefix to use for the built in Ant tasks. This prefix
+needs to be prepended to each task referenced in the antrun target
+config. For example, a prefix of &quot;mvn&quot; means that the
+attachartifact task is referenced by &quot;&lt;mvn:attachartifact&gt;&quot;
+The default value of an empty string means that no prefix is used
+for the tasks.<br />
+</td>
+</tr>
+<tr class="a"><td><strong><a href="#propertyPrefix">propertyPrefix</a></strong></td>
+<td><code>String</code></td>
+<td><code>1.4</code></td>
 <td>String to prepend to project and dependency property names.<br />
 </td>
 </tr>
-<tr class="a"><td><strong><a href="#sourceRoot">sourceRoot</a></strong></td>
+<tr class="b"><td><strong><a href="#sourceRoot">sourceRoot</a></strong></td>
 <td><code>File</code></td>
 <td><code>-</code></td>
 <td><strong>Deprecated.</strong> Use the build-helper-maven-plugin to bind source directories<br />
 </td>
 </tr>
-<tr class="b"><td><strong><a href="#taskNamespace">taskNamespace</a></strong></td>
-<td><code>String</code></td>
-<td><code>-</code></td>
-<td>The xml namespace to use for the built in Ant tasks.<br />
-<strong>Default value is</strong>: <code>mvn</code>.</td>
+<tr class="a"><td><strong><a href="#target">target</a></strong></td>
+<td><code>PlexusConfiguration</code></td>
+<td><code>1.5</code></td>
+<td>The XML for the Ant target. You can add anything you can add
+between &lt;target&gt; and &lt;/target&gt; in a build.xml.<br />
+</td>
 </tr>
-<tr class="a"><td><strong><a href="#tasks">tasks</a></strong></td>
-<td><code>Target</code></td>
+<tr class="b"><td><strong><a href="#tasks">tasks</a></strong></td>
+<td><code>PlexusConfiguration</code></td>
 <td><code>-</code></td>
-<td>The XML for the Ant task. You can add anything you can add between
-&lt;target&gt; and &lt;/target&gt; in a build.xml.<br />
+<td><strong>Deprecated.</strong> Use target instead<br />
 </td>
 </tr>
-<tr class="b"><td><strong><a href="#testSourceRoot">testSourceRoot</a></strong></td>
+<tr class="a"><td><strong><a href="#testSourceRoot">testSourceRoot</a></strong></td>
 <td><code>File</code></td>
 <td><code>-</code></td>
 <td><strong>Deprecated.</strong> Use the build-helper-maven-plugin to bind test source directories<br />
 </td>
 </tr>
-<tr class="a"><td><strong><a href="#versionsPropertyName">versionsPropertyName</a></strong></td>
+<tr class="b"><td><strong><a href="#versionsPropertyName">versionsPropertyName</a></strong></td>
 <td><code>String</code></td>
 <td><code>-</code></td>
 <td>The name of a property containing the list of all dependency
@@ -290,8 +301,20 @@ filenames.<br />
 </table>
 </div>
 <div class="section"><h3><a name="Parameter_Details"></a>Parameter Details</h3>
+<p><strong><a name="customTaskPrefix">customTaskPrefix</a>:</strong></p>
+<div>The xml tag prefix to use for the built in Ant tasks. This prefix
+needs to be prepended to each task referenced in the antrun target
+config. For example, a prefix of &quot;mvn&quot; means that the
+attachartifact task is referenced by &quot;&lt;mvn:attachartifact&gt;&quot;
+The default value of an empty string means that no prefix is used
+for the tasks.</div><ul><li><strong>Type</strong>: <code>java.lang.String</code></li>
+<li><strong>Since</strong>: <code>1.5</code></li>
+<li><strong>Required</strong>: <code>No</code></li>
+</ul>
+<hr />
 <p><strong><a name="propertyPrefix">propertyPrefix</a>:</strong></p>
 <div>String to prepend to project and dependency property names.</div><ul><li><strong>Type</strong>: <code>java.lang.String</code></li>
+<li><strong>Since</strong>: <code>1.4</code></li>
 <li><strong>Required</strong>: <code>No</code></li>
 </ul>
 <hr />
@@ -302,17 +325,17 @@ to be compiled. Use this if your ant scr
 <li><strong>Expression</strong>: <code>${sourceRoot}</code></li>
 </ul>
 <hr />
-<p><strong><a name="taskNamespace">taskNamespace</a>:</strong></p>
-<div>The xml namespace to use for the built in Ant tasks.</div><ul><li><strong>Type</strong>: <code>java.lang.String</code></li>
+<p><strong><a name="target">target</a>:</strong></p>
+<div>The XML for the Ant target. You can add anything you can add
+between &lt;target&gt; and &lt;/target&gt; in a build.xml.</div><ul><li><strong>Type</strong>: <code>org.codehaus.plexus.configuration.PlexusConfiguration</code></li>
+<li><strong>Since</strong>: <code>1.5</code></li>
 <li><strong>Required</strong>: <code>No</code></li>
-<li><strong>Default</strong>: <code>mvn</code></li>
 </ul>
 <hr />
 <p><strong><a name="tasks">tasks</a>:</strong></p>
-<div>The XML for the Ant task. You can add anything you can add between
-&lt;target&gt; and &lt;/target&gt; in a build.xml.</div><ul><li><strong>Type</strong>: <code>org.apache.tools.ant.Target</code></li>
+<div><strong>Deprecated.</strong> Use target instead</div><div>The XML for the Ant task. You can add anything you can add between
+&lt;target&gt; and &lt;/target&gt; in a build.xml.</div><ul><li><strong>Type</strong>: <code>org.codehaus.plexus.configuration.PlexusConfiguration</code></li>
 <li><strong>Required</strong>: <code>No</code></li>
-<li><strong>Expression</strong>: <code>${tasks}</code></li>
 </ul>
 <hr />
 <p><strong><a name="testSourceRoot">testSourceRoot</a>:</strong></p>

Modified: websites/production/maventest/content/plugins/maven-antrun-plugin-latest/source-repository.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-antrun-plugin-latest/source-repository.html (original)
+++ websites/production/maventest/content/plugins/maven-antrun-plugin-latest/source-repository.html Sun May  6 21:54:30 2012
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
+<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -73,8 +73,8 @@
             
   
     
-            &nbsp;| Last Published: 2010-05-25
-              &nbsp;| Version: 1.4
+            &nbsp;| Last Published: 2010-09-15
+              &nbsp;| Version: 1.5
             </div>
       <div class="clear">
         <hr/>
@@ -121,7 +121,7 @@
           </li>
               
     <li class="none">
-                    <a href="examples/tasksAttributes.html">Using tasks Attributes</a>
+                    <a href="examples/tasksAttributes.html">Using target attributes</a>
           </li>
               
     <li class="none">
@@ -276,20 +276,20 @@
     <div id="bodyColumn">
       <div id="contentBox">
         <a name="Overview"></a><div class="section"><h2>Overview</h2>
-This project uses <a class="externalLink" href="http://subversion.tigris.org/">Subversion</a> to manage its source code. Instructions on Subversion use can be found at <a class="externalLink" href="http://svnbook.red-bean.com/">http://svnbook.red-bean.com/</a>.</div>
+This project uses <a href="http://subversion.tigris.org/" class="externalLink">Subversion</a> to manage its source code. Instructions on Subversion use can be found at <a href="http://svnbook.red-bean.com/" class="externalLink">http://svnbook.red-bean.com/</a>.</div>
 <a name="Web_Access"></a><div class="section"><h2>Web Access</h2>
 <p>The following is a link to the online source repository.</p>
-<div class="source"><pre><a class="externalLink" href="http://svn.apache.org/viewvc/maven/plugins/tags/maven-antrun-plugin-1.4">http://svn.apache.org/viewvc/maven/plugins/tags/maven-antrun-plugin-1.4</a></pre>
+<div class="source"><pre><a href="http://svn.apache.org/viewvc/maven/plugins/tags/maven-antrun-plugin-1.5" class="externalLink">http://svn.apache.org/viewvc/maven/plugins/tags/maven-antrun-plugin-1.5</a></pre>
 </div>
 </div>
 <a name="Anonymous_access"></a><div class="section"><h2>Anonymous access</h2>
 <p>The source can be checked out anonymously from SVN with this command:</p>
-<div class="source"><pre>$ svn checkout http://svn.apache.org/repos/asf/maven/plugins/tags/maven-antrun-plugin-1.4 maven-antrun-plugin</pre>
+<div class="source"><pre>$ svn checkout http://svn.apache.org/repos/asf/maven/plugins/tags/maven-antrun-plugin-1.5 maven-antrun-plugin</pre>
 </div>
 </div>
 <a name="Developer_access"></a><div class="section"><h2>Developer access</h2>
 <p>Everyone can access the Subversion repository via HTTP, but Committers must checkout the Subversion repository via HTTPS.</p>
-<div class="source"><pre>$ svn checkout https://svn.apache.org/repos/asf/maven/plugins/tags/maven-antrun-plugin-1.4 maven-antrun-plugin</pre>
+<div class="source"><pre>$ svn checkout https://svn.apache.org/repos/asf/maven/plugins/tags/maven-antrun-plugin-1.5 maven-antrun-plugin</pre>
 </div>
 <p>To commit changes to the repository, execute the following command to commit your changes (svn will prompt you for your password)</p>
 <div class="source"><pre>$ svn commit --username your-username -m &quot;A message&quot;</pre>
@@ -297,7 +297,7 @@ This project uses <a class="externalLink
 </div>
 <a name="Access_from_behind_a_firewall"></a><div class="section"><h2>Access from behind a firewall</h2>
 <p>For those users who are stuck behind a corporate firewall which is blocking HTTP access to the Subversion repository, you can try to access it via the developer connection:</p>
-<div class="source"><pre>$ svn checkout https://svn.apache.org/repos/asf/maven/plugins/tags/maven-antrun-plugin-1.4 maven-antrun-plugin</pre>
+<div class="source"><pre>$ svn checkout https://svn.apache.org/repos/asf/maven/plugins/tags/maven-antrun-plugin-1.5 maven-antrun-plugin</pre>
 </div>
 </div>
 <a name="Access_through_a_proxy"></a><div class="section"><h2>Access through a proxy</h2>

Modified: websites/production/maventest/content/plugins/maven-antrun-plugin-latest/tasks/attachArtifact.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-antrun-plugin-latest/tasks/attachArtifact.html (original)
+++ websites/production/maventest/content/plugins/maven-antrun-plugin-latest/tasks/attachArtifact.html Sun May  6 21:54:30 2012
@@ -22,7 +22,7 @@
           <meta name="author" content="Paul Gier" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
+<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -63,7 +63,7 @@
                 <a href="../../index.html">Plugins</a>
                 &gt;
       
-                <a href="http://maven.apache.org/plugins/maven-antrun-plugin" class="externalLink">Maven AntRun Plugin</a>
+                <a href="http://maven.apache.org/plugins/maven-antrun-plugin/" class="externalLink">Maven AntRun Plugin</a>
                   </div>
             <div class="xright">            <a href="http://ant.apache.org/" class="externalLink">Ant</a>
             
@@ -74,8 +74,8 @@
             
   
     
-            &nbsp;| Last Published: 2010-05-25
-              &nbsp;| Version: 1.4
+            &nbsp;| Last Published: 2010-09-15
+              &nbsp;| Version: 1.5
             </div>
       <div class="clear">
         <hr/>
@@ -122,52 +122,13 @@
           </li>
               
     <li class="none">
-                    <a href="../examples/tasksAttributes.html">Using tasks Attributes</a>
+                    <a href="../examples/tasksAttributes.html">Using target attributes</a>
           </li>
               
     <li class="none">
                     <a href="../examples/customTasks.html">Using tasks not included in Ant's default jar</a>
           </li>
           </ul>
-              <h5>Project Documentation</h5>
-            <ul>
-              
-                
-              
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-              
-        <li class="collapsed">
-                    <a href="../project-info.html">Project Information</a>
-                </li>
-              
-                
-              
-      
-              
-        <li class="collapsed">
-                    <a href="../project-reports.html">Project Reports</a>
-                </li>
-          </ul>
               <h5>Maven Projects</h5>
             <ul>
               
@@ -257,7 +218,7 @@
 <div class="source"><pre>      &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-antrun-plugin&lt;/artifactId&gt;
-        &lt;version&gt;1.4&lt;/version&gt;
+        &lt;version&gt;1.5&lt;/version&gt;
         &lt;executions&gt;
           &lt;execution&gt;
             &lt;id&gt;attach-artifact&lt;/id&gt;
@@ -266,13 +227,13 @@
               &lt;goal&gt;run&lt;/goal&gt;
             &lt;/goals&gt;
             &lt;configuration&gt;
-              &lt;tasks&gt;
+              &lt;target&gt;
                 &lt;zip destfile=&quot;my-project-src.zip&quot;
                      basedir=&quot;.&quot;
                      includes=&quot;*.*&quot;
                   /&gt;
                 &lt;attachartifact file=&quot;my-project-src.zip&quot; classifier=&quot;src&quot; type=&quot;zip&quot;/&gt;
-              &lt;/tasks&gt;
+              &lt;/target&gt;
             &lt;/configuration&gt;
           &lt;/execution&gt;
         &lt;/executions&gt;

Modified: websites/production/maventest/content/plugins/maven-antrun-plugin-latest/tasks/dependencyFilesets.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-antrun-plugin-latest/tasks/dependencyFilesets.html (original)
+++ websites/production/maventest/content/plugins/maven-antrun-plugin-latest/tasks/dependencyFilesets.html Sun May  6 21:54:30 2012
@@ -22,7 +22,7 @@
           <meta name="author" content="Paul Gier" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
+<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -63,7 +63,7 @@
                 <a href="../../index.html">Plugins</a>
                 &gt;
       
-                <a href="http://maven.apache.org/plugins/maven-antrun-plugin" class="externalLink">Maven AntRun Plugin</a>
+                <a href="http://maven.apache.org/plugins/maven-antrun-plugin/" class="externalLink">Maven AntRun Plugin</a>
                   </div>
             <div class="xright">            <a href="http://ant.apache.org/" class="externalLink">Ant</a>
             
@@ -74,8 +74,8 @@
             
   
     
-            &nbsp;| Last Published: 2010-05-25
-              &nbsp;| Version: 1.4
+            &nbsp;| Last Published: 2010-09-15
+              &nbsp;| Version: 1.5
             </div>
       <div class="clear">
         <hr/>
@@ -122,52 +122,13 @@
           </li>
               
     <li class="none">
-                    <a href="../examples/tasksAttributes.html">Using tasks Attributes</a>
+                    <a href="../examples/tasksAttributes.html">Using target attributes</a>
           </li>
               
     <li class="none">
                     <a href="../examples/customTasks.html">Using tasks not included in Ant's default jar</a>
           </li>
           </ul>
-              <h5>Project Documentation</h5>
-            <ul>
-              
-                
-              
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-              
-        <li class="collapsed">
-                    <a href="../project-info.html">Project Information</a>
-                </li>
-              
-                
-              
-      
-              
-        <li class="collapsed">
-                    <a href="../project-reports.html">Project Reports</a>
-                </li>
-          </ul>
               <h5>Maven Projects</h5>
             <ul>
               
@@ -262,7 +223,7 @@
 <div class="source"><pre>      &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-antrun-plugin&lt;/artifactId&gt;
-        &lt;version&gt;1.4&lt;/version&gt;
+        &lt;version&gt;1.5&lt;/version&gt;
         &lt;executions&gt;
           &lt;execution&gt;
             &lt;id&gt;copy-dependencies&lt;/id&gt;
@@ -271,7 +232,7 @@
               &lt;goal&gt;run&lt;/goal&gt;
             &lt;/goals&gt;
             &lt;configuration&gt;
-              &lt;tasks&gt;
+              &lt;target&gt;
         
                 &lt;dependencyfilesets prefix=&quot;mydeps.&quot;/&gt;
                 &lt;mkdir dir=&quot;target/dependencies&quot;/&gt;
@@ -285,7 +246,7 @@
                   &lt;fileset refid=&quot;mydeps.maven.project.dependencies&quot;/&gt;
                 &lt;/copy&gt;
         
-              &lt;/tasks&gt;
+              &lt;/target&gt;
             &lt;/configuration&gt;
           &lt;/execution&gt;
         &lt;/executions&gt;

Modified: websites/production/maventest/content/plugins/maven-antrun-plugin-latest/tasks/tasks.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-antrun-plugin-latest/tasks/tasks.html (original)
+++ websites/production/maventest/content/plugins/maven-antrun-plugin-latest/tasks/tasks.html Sun May  6 21:54:30 2012
@@ -22,7 +22,7 @@
           <meta name="author" content="Paul Gier" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
+<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -63,7 +63,7 @@
                 <a href="../../index.html">Plugins</a>
                 &gt;
       
-                <a href="http://maven.apache.org/plugins/maven-antrun-plugin" class="externalLink">Maven AntRun Plugin</a>
+                <a href="http://maven.apache.org/plugins/maven-antrun-plugin/" class="externalLink">Maven AntRun Plugin</a>
                   </div>
             <div class="xright">            <a href="http://ant.apache.org/" class="externalLink">Ant</a>
             
@@ -74,8 +74,8 @@
             
   
     
-            &nbsp;| Last Published: 2010-05-25
-              &nbsp;| Version: 1.4
+            &nbsp;| Last Published: 2010-09-15
+              &nbsp;| Version: 1.5
             </div>
       <div class="clear">
         <hr/>
@@ -122,52 +122,13 @@
           </li>
               
     <li class="none">
-                    <a href="../examples/tasksAttributes.html">Using tasks Attributes</a>
+                    <a href="../examples/tasksAttributes.html">Using target attributes</a>
           </li>
               
     <li class="none">
                     <a href="../examples/customTasks.html">Using tasks not included in Ant's default jar</a>
           </li>
           </ul>
-              <h5>Project Documentation</h5>
-            <ul>
-              
-                
-              
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-              
-        <li class="collapsed">
-                    <a href="../project-info.html">Project Information</a>
-                </li>
-              
-                
-              
-      
-              
-        <li class="collapsed">
-                    <a href="../project-reports.html">Project Reports</a>
-                </li>
-          </ul>
               <h5>Maven Projects</h5>
             <ul>
               

Modified: websites/production/maventest/content/plugins/maven-antrun-plugin-latest/tasks/versionMapper.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-antrun-plugin-latest/tasks/versionMapper.html (original)
+++ websites/production/maventest/content/plugins/maven-antrun-plugin-latest/tasks/versionMapper.html Sun May  6 21:54:30 2012
@@ -22,7 +22,7 @@
           <meta name="author" content="Paul Gier" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
+<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -63,7 +63,7 @@
                 <a href="../../index.html">Plugins</a>
                 &gt;
       
-                <a href="http://maven.apache.org/plugins/maven-antrun-plugin" class="externalLink">Maven AntRun Plugin</a>
+                <a href="http://maven.apache.org/plugins/maven-antrun-plugin/" class="externalLink">Maven AntRun Plugin</a>
                   </div>
             <div class="xright">            <a href="http://ant.apache.org/" class="externalLink">Ant</a>
             
@@ -74,8 +74,8 @@
             
   
     
-            &nbsp;| Last Published: 2010-05-25
-              &nbsp;| Version: 1.4
+            &nbsp;| Last Published: 2010-09-15
+              &nbsp;| Version: 1.5
             </div>
       <div class="clear">
         <hr/>
@@ -122,52 +122,13 @@
           </li>
               
     <li class="none">
-                    <a href="../examples/tasksAttributes.html">Using tasks Attributes</a>
+                    <a href="../examples/tasksAttributes.html">Using target attributes</a>
           </li>
               
     <li class="none">
                     <a href="../examples/customTasks.html">Using tasks not included in Ant's default jar</a>
           </li>
           </ul>
-              <h5>Project Documentation</h5>
-            <ul>
-              
-                
-              
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-            
-      
-              
-        <li class="collapsed">
-                    <a href="../project-info.html">Project Information</a>
-                </li>
-              
-                
-              
-      
-              
-        <li class="collapsed">
-                    <a href="../project-reports.html">Project Reports</a>
-                </li>
-          </ul>
               <h5>Maven Projects</h5>
             <ul>
               
@@ -237,7 +198,7 @@
 <div class="source"><pre>      &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-antrun-plugin&lt;/artifactId&gt;
-        &lt;version&gt;1.4&lt;/version&gt;
+        &lt;version&gt;1.5&lt;/version&gt;
         &lt;executions&gt;
           &lt;execution&gt;
             &lt;id&gt;copy-dependencies&lt;/id&gt;
@@ -246,7 +207,7 @@
               &lt;goal&gt;run&lt;/goal&gt;
             &lt;/goals&gt;
             &lt;configuration&gt;
-              &lt;tasks&gt;
+              &lt;target&gt;
                 &lt;mapper id=&quot;remove-versions&quot;
                         classname=&quot;org.apache.maven.ant.tasks.support.VersionMapper&quot;
                         from=&quot;${maven.project.dependencies.versions}&quot; 
@@ -257,7 +218,7 @@
                   &lt;/path&gt;
                   &lt;mapper refid=&quot;remove-versions&quot; /&gt;
                 &lt;/copy&gt;
-              &lt;/tasks&gt;
+              &lt;/target&gt;
             &lt;/configuration&gt;
           &lt;/execution&gt;
         &lt;/executions&gt;