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/08 15:08:02 UTC

svn commit: r816617 [7/10] - in /websites/production/maventest/content/plugins/maven-compiler-plugin-latest: ./ apidocs/ apidocs/org/apache/maven/plugin/ apidocs/org/apache/maven/plugin/class-use/ cobertura/ examples/ testapidocs/ testapidocs/org/apach...

Modified: websites/production/maventest/content/plugins/maven-compiler-plugin-latest/examples/compile-using-different-jdk.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-compiler-plugin-latest/examples/compile-using-different-jdk.html (original)
+++ websites/production/maventest/content/plugins/maven-compiler-plugin-latest/examples/compile-using-different-jdk.html Tue May  8 13:07:59 2012
@@ -22,7 +22,7 @@
           <meta name="author" content="Edwin Punzalan" />
         <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="http://maven.apache.org/plugins/index.html" class="externalLink">Plugins</a>
                 &gt;
       
-                <a href="../../../../../../../../../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
+                <a href="../../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
                   </div>
             <div class="xright">      
   
@@ -73,8 +73,8 @@
             
   
     
-             Last Published: 2010-05-17
-              &nbsp;| Version: 2.3.1
+             Last Published: 2010-09-04
+              &nbsp;| Version: 2.3.2
             </div>
       <div class="clear">
         <hr/>
@@ -94,42 +94,42 @@
             <ul>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Introduction</a>
+                    <a href="../index.html">Introduction</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Goals</a>
+                    <a href="../plugin-info.html">Goals</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Usage</a>
+                    <a href="../usage.html">Usage</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">FAQ</a>
+                    <a href="../faq.html">FAQ</a>
           </li>
           </ul>
               <h5>Examples</h5>
             <ul>
               
     <li class="none">
-                    <a href="../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using A Different JDK</a>
-          </li>
+              <strong>Compile Using A Different JDK</strong>
+        </li>
               
     <li class="none">
-                    <a href="../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using -source and -target javac Options</a>
+                    <a href="../examples/set-compiler-source-and-target.html">Compile Using -source and -target javac Options</a>
           </li>
               
     <li class="none">
-                    <a href="../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using Memory Allocation Enhancements</a>
+                    <a href="../examples/compile-with-memory-enhancements.html">Compile Using Memory Allocation Enhancements</a>
           </li>
               
     <li class="none">
-                    <a href="../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Pass Compiler Arguments</a>
+                    <a href="../examples/pass-compiler-arguments.html">Pass Compiler Arguments</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Non-javac compilerIds</a>
+                    <a href="../non-javac-compilers.html">Non-javac compilerIds</a>
           </li>
           </ul>
               <h5>Project Documentation</h5>
@@ -263,7 +263,7 @@
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
-        &lt;version&gt;2.3.1&lt;/version&gt;
+        &lt;version&gt;2.3.2&lt;/version&gt;
         &lt;configuration&gt;
           &lt;verbose&gt;true&lt;/verbose&gt;
           &lt;fork&gt;true&lt;/fork&gt;
@@ -275,10 +275,12 @@
     [...]
   &lt;/build&gt;
   [...]
-&lt;/project&gt;</pre>
+&lt;/project&gt;
+</pre>
 </div>
 <p>To avoid hard-coding a filesystem path for the executable, you can use a property. For example:</p>
-<div class="source"><pre>          &lt;executable&gt;${JAVA_1_4_HOME}/bin/javac&lt;/executable&gt;</pre>
+<div class="source"><pre>          &lt;executable&gt;${JAVA_1_4_HOME}/bin/javac&lt;/executable&gt;
+</pre>
 </div>
 <p>Each developer then defines this property in <a href="http://maven.apache.org/ref/current/maven-settings/settings.html" class="externalLink">settings.xml</a>, or sets an environment variable, so that the build remains portable.</p>
 <div class="source"><pre>&lt;settings&gt;
@@ -296,7 +298,8 @@
   &lt;activeProfiles&gt;
     &lt;activeProfile&gt;compiler&lt;/activeProfile&gt;
   &lt;/activeProfiles&gt;
-&lt;/settings&gt;</pre>
+&lt;/settings&gt;
+</pre>
 </div>
 <p>If you build with a different JDK, you may want to <a href="http://maven.apache.org/plugins/maven-jar-plugin/examples/manifest-customization.html" class="externalLink"> customize</a> the jar file manifest.</p>
 </div>

Modified: websites/production/maventest/content/plugins/maven-compiler-plugin-latest/examples/compile-with-memory-enhancements.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-compiler-plugin-latest/examples/compile-with-memory-enhancements.html (original)
+++ websites/production/maventest/content/plugins/maven-compiler-plugin-latest/examples/compile-with-memory-enhancements.html Tue May  8 13:07:59 2012
@@ -22,7 +22,7 @@
           <meta name="author" content="Edwin Punzalan" />
         <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="http://maven.apache.org/plugins/index.html" class="externalLink">Plugins</a>
                 &gt;
       
-                <a href="../../../../../../../../../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
+                <a href="../../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
                   </div>
             <div class="xright">      
   
@@ -73,8 +73,8 @@
             
   
     
-             Last Published: 2010-05-17
-              &nbsp;| Version: 2.3.1
+             Last Published: 2010-09-04
+              &nbsp;| Version: 2.3.2
             </div>
       <div class="clear">
         <hr/>
@@ -94,42 +94,42 @@
             <ul>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Introduction</a>
+                    <a href="../index.html">Introduction</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Goals</a>
+                    <a href="../plugin-info.html">Goals</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Usage</a>
+                    <a href="../usage.html">Usage</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">FAQ</a>
+                    <a href="../faq.html">FAQ</a>
           </li>
           </ul>
               <h5>Examples</h5>
             <ul>
               
     <li class="none">
-                    <a href="../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using A Different JDK</a>
+                    <a href="../examples/compile-using-different-jdk.html">Compile Using A Different JDK</a>
           </li>
               
     <li class="none">
-                    <a href="../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using -source and -target javac Options</a>
+                    <a href="../examples/set-compiler-source-and-target.html">Compile Using -source and -target javac Options</a>
           </li>
               
     <li class="none">
-                    <a href="../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using Memory Allocation Enhancements</a>
-          </li>
+              <strong>Compile Using Memory Allocation Enhancements</strong>
+        </li>
               
     <li class="none">
-                    <a href="../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Pass Compiler Arguments</a>
+                    <a href="../examples/pass-compiler-arguments.html">Pass Compiler Arguments</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Non-javac compilerIds</a>
+                    <a href="../non-javac-compilers.html">Non-javac compilerIds</a>
           </li>
           </ul>
               <h5>Project Documentation</h5>
@@ -263,7 +263,7 @@
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
-        &lt;version&gt;2.3.1&lt;/version&gt;
+        &lt;version&gt;2.3.2&lt;/version&gt;
         &lt;configuration&gt;
           &lt;fork&gt;true&lt;/fork&gt;
           &lt;meminitial&gt;128m&lt;/meminitial&gt;
@@ -274,7 +274,8 @@
     [...]
   &lt;/build&gt;
   [...]
-&lt;/project&gt;</pre>
+&lt;/project&gt;
+</pre>
 </div>
 </div>
 

Modified: websites/production/maventest/content/plugins/maven-compiler-plugin-latest/examples/pass-compiler-arguments.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-compiler-plugin-latest/examples/pass-compiler-arguments.html (original)
+++ websites/production/maventest/content/plugins/maven-compiler-plugin-latest/examples/pass-compiler-arguments.html Tue May  8 13:07:59 2012
@@ -22,7 +22,7 @@
           <meta name="author" content="Edwin Punzalan" />
         <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="http://maven.apache.org/plugins/index.html" class="externalLink">Plugins</a>
                 &gt;
       
-                <a href="../../../../../../../../../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
+                <a href="../../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
                   </div>
             <div class="xright">      
   
@@ -73,8 +73,8 @@
             
   
     
-             Last Published: 2010-05-17
-              &nbsp;| Version: 2.3.1
+             Last Published: 2010-09-04
+              &nbsp;| Version: 2.3.2
             </div>
       <div class="clear">
         <hr/>
@@ -94,42 +94,42 @@
             <ul>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Introduction</a>
+                    <a href="../index.html">Introduction</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Goals</a>
+                    <a href="../plugin-info.html">Goals</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Usage</a>
+                    <a href="../usage.html">Usage</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">FAQ</a>
+                    <a href="../faq.html">FAQ</a>
           </li>
           </ul>
               <h5>Examples</h5>
             <ul>
               
     <li class="none">
-                    <a href="../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using A Different JDK</a>
+                    <a href="../examples/compile-using-different-jdk.html">Compile Using A Different JDK</a>
           </li>
               
     <li class="none">
-                    <a href="../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using -source and -target javac Options</a>
+                    <a href="../examples/set-compiler-source-and-target.html">Compile Using -source and -target javac Options</a>
           </li>
               
     <li class="none">
-                    <a href="../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using Memory Allocation Enhancements</a>
+                    <a href="../examples/compile-with-memory-enhancements.html">Compile Using Memory Allocation Enhancements</a>
           </li>
               
     <li class="none">
-                    <a href="../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Pass Compiler Arguments</a>
-          </li>
+              <strong>Pass Compiler Arguments</strong>
+        </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Non-javac compilerIds</a>
+                    <a href="../non-javac-compilers.html">Non-javac compilerIds</a>
           </li>
           </ul>
               <h5>Project Documentation</h5>
@@ -263,7 +263,7 @@
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
-        &lt;version&gt;2.3.1&lt;/version&gt;
+        &lt;version&gt;2.3.2&lt;/version&gt;
         &lt;configuration&gt;
           &lt;compilerArgument&gt;-verbose -bootclasspath ${java.home}\lib\rt.jar&lt;/compilerArgument&gt;
         &lt;/configuration&gt;
@@ -272,7 +272,8 @@
     [...]
   &lt;/build&gt;
   [...]
-&lt;/project&gt;</pre>
+&lt;/project&gt;
+</pre>
 </div>
 <p>Or you can also use the Map version:</p>
 <div class="source"><pre>&lt;project&gt;
@@ -283,7 +284,7 @@
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
-        &lt;version&gt;2.3.1&lt;/version&gt;
+        &lt;version&gt;2.3.2&lt;/version&gt;
         &lt;configuration&gt;
           &lt;compilerArguments&gt;
             &lt;verbose /&gt;
@@ -295,7 +296,8 @@
     [...]
   &lt;/build&gt;
   [...]
-&lt;/project&gt;</pre>
+&lt;/project&gt;
+</pre>
 </div>
 </div>
 

Modified: websites/production/maventest/content/plugins/maven-compiler-plugin-latest/examples/set-compiler-source-and-target.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-compiler-plugin-latest/examples/set-compiler-source-and-target.html (original)
+++ websites/production/maventest/content/plugins/maven-compiler-plugin-latest/examples/set-compiler-source-and-target.html Tue May  8 13:07:59 2012
@@ -22,7 +22,7 @@
           <meta name="author" content="Edwin Punzalan" />
         <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="http://maven.apache.org/plugins/index.html" class="externalLink">Plugins</a>
                 &gt;
       
-                <a href="../../../../../../../../../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
+                <a href="../../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
                   </div>
             <div class="xright">      
   
@@ -73,8 +73,8 @@
             
   
     
-             Last Published: 2010-05-17
-              &nbsp;| Version: 2.3.1
+             Last Published: 2010-09-04
+              &nbsp;| Version: 2.3.2
             </div>
       <div class="clear">
         <hr/>
@@ -94,42 +94,42 @@
             <ul>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Introduction</a>
+                    <a href="../index.html">Introduction</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Goals</a>
+                    <a href="../plugin-info.html">Goals</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Usage</a>
+                    <a href="../usage.html">Usage</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">FAQ</a>
+                    <a href="../faq.html">FAQ</a>
           </li>
           </ul>
               <h5>Examples</h5>
             <ul>
               
     <li class="none">
-                    <a href="../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using A Different JDK</a>
+                    <a href="../examples/compile-using-different-jdk.html">Compile Using A Different JDK</a>
           </li>
               
     <li class="none">
-                    <a href="../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using -source and -target javac Options</a>
-          </li>
+              <strong>Compile Using -source and -target javac Options</strong>
+        </li>
               
     <li class="none">
-                    <a href="../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using Memory Allocation Enhancements</a>
+                    <a href="../examples/compile-with-memory-enhancements.html">Compile Using Memory Allocation Enhancements</a>
           </li>
               
     <li class="none">
-                    <a href="../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Pass Compiler Arguments</a>
+                    <a href="../examples/pass-compiler-arguments.html">Pass Compiler Arguments</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Non-javac compilerIds</a>
+                    <a href="../non-javac-compilers.html">Non-javac compilerIds</a>
           </li>
           </ul>
               <h5>Project Documentation</h5>
@@ -264,7 +264,7 @@
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
-        &lt;version&gt;2.3.1&lt;/version&gt;
+        &lt;version&gt;2.3.2&lt;/version&gt;
         &lt;configuration&gt;
           &lt;source&gt;1.4&lt;/source&gt;
           &lt;target&gt;1.4&lt;/target&gt;
@@ -274,8 +274,10 @@
     [...]
   &lt;/build&gt;
   [...]
-&lt;/project&gt;</pre>
+&lt;/project&gt;
+</pre>
 </div>
+<p><b>Note:</b> Merely setting the <tt>target</tt> option does not guarantee that your code actually runs on a JRE with the specified version. The pitfall is unintended usage of APIs that only exist in later JREs which would make your code fail at runtime with a linkage error. To avoid this issue, you can either configure the compiler's boot classpath to match the target JRE or use the <a href="http://mojo.codehaus.org/animal-sniffer-maven-plugin/" class="externalLink">Animal Sniffer Maven Plugin</a> to verify your code doesn't use unintended APIs.</p>
 </div>
 
       </div>

Modified: websites/production/maventest/content/plugins/maven-compiler-plugin-latest/faq.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-compiler-plugin-latest/faq.html (original)
+++ websites/production/maventest/content/plugins/maven-compiler-plugin-latest/faq.html Tue May  8 13:07:59 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>
@@ -62,7 +62,7 @@
                 <a href="http://maven.apache.org/plugins/index.html" class="externalLink">Plugins</a>
                 &gt;
       
-                <a href="../../../../../../../../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
+                <a href="../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
                   </div>
             <div class="xright">      
   
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2010-05-17
-              &nbsp;| Version: 2.3.1
+             Last Published: 2010-09-04
+              &nbsp;| Version: 2.3.2
             </div>
       <div class="clear">
         <hr/>
@@ -93,42 +93,42 @@
             <ul>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Introduction</a>
+                    <a href="index.html">Introduction</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Goals</a>
+                    <a href="plugin-info.html">Goals</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Usage</a>
+                    <a href="usage.html">Usage</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">FAQ</a>
-          </li>
+              <strong>FAQ</strong>
+        </li>
           </ul>
               <h5>Examples</h5>
             <ul>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using A Different JDK</a>
+                    <a href="examples/compile-using-different-jdk.html">Compile Using A Different JDK</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using -source and -target javac Options</a>
+                    <a href="examples/set-compiler-source-and-target.html">Compile Using -source and -target javac Options</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using Memory Allocation Enhancements</a>
+                    <a href="examples/compile-with-memory-enhancements.html">Compile Using Memory Allocation Enhancements</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Pass Compiler Arguments</a>
+                    <a href="examples/pass-compiler-arguments.html">Pass Compiler Arguments</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Non-javac compilerIds</a>
+                    <a href="non-javac-compilers.html">Non-javac compilerIds</a>
           </li>
           </ul>
               <h5>Project Documentation</h5>

Modified: websites/production/maventest/content/plugins/maven-compiler-plugin-latest/help-mojo.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-compiler-plugin-latest/help-mojo.html (original)
+++ websites/production/maventest/content/plugins/maven-compiler-plugin-latest/help-mojo.html Tue May  8 13:07:59 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>
@@ -62,7 +62,7 @@
                 <a href="http://maven.apache.org/plugins/index.html" class="externalLink">Plugins</a>
                 &gt;
       
-                <a href="../../../../../../../../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
+                <a href="../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
                   </div>
             <div class="xright">      
   
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2010-05-17
-              &nbsp;| Version: 2.3.1
+             Last Published: 2010-09-04
+              &nbsp;| Version: 2.3.2
             </div>
       <div class="clear">
         <hr/>
@@ -93,42 +93,42 @@
             <ul>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Introduction</a>
+                    <a href="index.html">Introduction</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Goals</a>
+                    <a href="plugin-info.html">Goals</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Usage</a>
+                    <a href="usage.html">Usage</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">FAQ</a>
+                    <a href="faq.html">FAQ</a>
           </li>
           </ul>
               <h5>Examples</h5>
             <ul>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using A Different JDK</a>
+                    <a href="examples/compile-using-different-jdk.html">Compile Using A Different JDK</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using -source and -target javac Options</a>
+                    <a href="examples/set-compiler-source-and-target.html">Compile Using -source and -target javac Options</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using Memory Allocation Enhancements</a>
+                    <a href="examples/compile-with-memory-enhancements.html">Compile Using Memory Allocation Enhancements</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Pass Compiler Arguments</a>
+                    <a href="examples/pass-compiler-arguments.html">Pass Compiler Arguments</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Non-javac compilerIds</a>
+                    <a href="non-javac-compilers.html">Non-javac compilerIds</a>
           </li>
           </ul>
               <h5>Project Documentation</h5>
@@ -254,7 +254,7 @@
       <div id="contentBox">
         <div class="section"><h2><a name="compiler:help"></a>compiler:help</h2>
 <p><strong>Full name</strong>:</p>
-<p>org.apache.maven.plugins:maven-compiler-plugin:2.3.1:help</p>
+<p>org.apache.maven.plugins:maven-compiler-plugin:2.3.2:help</p>
 <p><strong>Description</strong>:</p>
 <div>Display help information on maven-compiler-plugin.<br />
 

Modified: websites/production/maventest/content/plugins/maven-compiler-plugin-latest/index.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-compiler-plugin-latest/index.html (original)
+++ websites/production/maventest/content/plugins/maven-compiler-plugin-latest/index.html Tue May  8 13:07:59 2012
@@ -22,7 +22,7 @@
           <meta name="author" content="Edwin Punzalan" />
         <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="http://maven.apache.org/plugins/index.html" class="externalLink">Plugins</a>
                 &gt;
       
-                <a href="../../../../../../../../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
+                <a href="../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
                   </div>
             <div class="xright">      
   
@@ -73,8 +73,8 @@
             
   
     
-             Last Published: 2010-05-17
-              &nbsp;| Version: 2.3.1
+             Last Published: 2010-09-04
+              &nbsp;| Version: 2.3.2
             </div>
       <div class="clear">
         <hr/>
@@ -94,42 +94,42 @@
             <ul>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Introduction</a>
-          </li>
+              <strong>Introduction</strong>
+        </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Goals</a>
+                    <a href="plugin-info.html">Goals</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Usage</a>
+                    <a href="usage.html">Usage</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">FAQ</a>
+                    <a href="faq.html">FAQ</a>
           </li>
           </ul>
               <h5>Examples</h5>
             <ul>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using A Different JDK</a>
+                    <a href="examples/compile-using-different-jdk.html">Compile Using A Different JDK</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using -source and -target javac Options</a>
+                    <a href="examples/set-compiler-source-and-target.html">Compile Using -source and -target javac Options</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using Memory Allocation Enhancements</a>
+                    <a href="examples/compile-with-memory-enhancements.html">Compile Using Memory Allocation Enhancements</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Pass Compiler Arguments</a>
+                    <a href="examples/pass-compiler-arguments.html">Pass Compiler Arguments</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Non-javac compilerIds</a>
+                    <a href="non-javac-compilers.html">Non-javac compilerIds</a>
           </li>
           </ul>
               <h5>Project Documentation</h5>
@@ -300,10 +300,10 @@
     <div id="bodyColumn">
       <div id="contentBox">
         <div class="section"><h2>Maven Compiler Plugin</h2>
-<p>The Compiler Plugin is used to compile the sources of your project. The default compiler is <tt>javac</tt> and is used to compile Java sources. The default <tt>source</tt> setting is <tt>1.5</tt> and the default <tt>target</tt> setting is <tt>1.5</tt>, independently of the JDK you run Maven with. If you want to change these defaults, you should set <tt>source</tt> and <tt>target</tt> as described in <a href="./examples/set-compiler-source-and-target.html">Setting the -source and -target of the Java Compiler</a>.</p>
+<p>The Compiler Plugin is used to compile the sources of your project. The default compiler is <tt>javac</tt> and is used to compile Java sources. Also note that at present the default <tt>source</tt> setting is <tt>1.5</tt> and the default <tt>target</tt> setting is <tt>1.5</tt>, independently of the JDK you run Maven with. If you want to change these defaults, you should set <tt>source</tt> and <tt>target</tt> as described in <a href="./examples/set-compiler-source-and-target.html">Setting the -source and -target of the Java Compiler</a>.</p>
 <p>Other compilers than <tt>javac</tt> can be used and work has already started on AspectJ, .NET, and C#.</p>
 <p>This Compiler Plugin is the Maven 2 version of Maven 1.x's Java Plugin.</p>
-<p><b>NOTE:</b> <i>To know more about the Java JDK 1.4 javac, please see: <a href="http://java.sun.com/j2se/1.4.2/docs/tooldocs/tools.html#basic" class="externalLink">http://java.sun.com/j2se/1.4.2/docs/tooldocs/tools.html#basic</a>.</i></p>
+<p><b>NOTE:</b> <i>To know more about the JDK javac, please see: <a href="http://download.oracle.com/javase/6/docs/technotes/tools/windows/javac.html" class="externalLink">http://download.oracle.com/javase/6/docs/technotes/tools/windows/javac.html</a>.</i></p>
 <div class="section"><h3>Goals Overview</h3>
 <p>The Compiler Plugin has two goals. Both are already bound to their proper phases within the Maven Lifecycle and are therefore, automatically executed during their respective phases.</p>
 <ul><li><a href="./compile-mojo.html">compiler:compile</a> is bound to the compile phase and is used to compile the main source files.</li>

Modified: websites/production/maventest/content/plugins/maven-compiler-plugin-latest/integration.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-compiler-plugin-latest/integration.html (original)
+++ websites/production/maventest/content/plugins/maven-compiler-plugin-latest/integration.html Tue May  8 13:07:59 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>
@@ -62,7 +62,7 @@
                 <a href="http://maven.apache.org/plugins/index.html" class="externalLink">Plugins</a>
                 &gt;
       
-                <a href="../../../../../../../../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
+                <a href="../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
                   </div>
             <div class="xright">      
   
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2010-05-17
-              &nbsp;| Version: 2.3.1
+             Last Published: 2010-09-04
+              &nbsp;| Version: 2.3.2
             </div>
       <div class="clear">
         <hr/>
@@ -93,42 +93,42 @@
             <ul>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Introduction</a>
+                    <a href="index.html">Introduction</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Goals</a>
+                    <a href="plugin-info.html">Goals</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Usage</a>
+                    <a href="usage.html">Usage</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">FAQ</a>
+                    <a href="faq.html">FAQ</a>
           </li>
           </ul>
               <h5>Examples</h5>
             <ul>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using A Different JDK</a>
+                    <a href="examples/compile-using-different-jdk.html">Compile Using A Different JDK</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using -source and -target javac Options</a>
+                    <a href="examples/set-compiler-source-and-target.html">Compile Using -source and -target javac Options</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using Memory Allocation Enhancements</a>
+                    <a href="examples/compile-with-memory-enhancements.html">Compile Using Memory Allocation Enhancements</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Pass Compiler Arguments</a>
+                    <a href="examples/pass-compiler-arguments.html">Pass Compiler Arguments</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Non-javac compilerIds</a>
+                    <a href="non-javac-compilers.html">Non-javac compilerIds</a>
           </li>
           </ul>
               <h5>Project Documentation</h5>

Modified: websites/production/maventest/content/plugins/maven-compiler-plugin-latest/issue-tracking.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-compiler-plugin-latest/issue-tracking.html (original)
+++ websites/production/maventest/content/plugins/maven-compiler-plugin-latest/issue-tracking.html Tue May  8 13:07:59 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>
@@ -62,7 +62,7 @@
                 <a href="http://maven.apache.org/plugins/index.html" class="externalLink">Plugins</a>
                 &gt;
       
-                <a href="../../../../../../../../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
+                <a href="../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
                   </div>
             <div class="xright">      
   
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2010-05-17
-              &nbsp;| Version: 2.3.1
+             Last Published: 2010-09-04
+              &nbsp;| Version: 2.3.2
             </div>
       <div class="clear">
         <hr/>
@@ -93,42 +93,42 @@
             <ul>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Introduction</a>
+                    <a href="index.html">Introduction</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Goals</a>
+                    <a href="plugin-info.html">Goals</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Usage</a>
+                    <a href="usage.html">Usage</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">FAQ</a>
+                    <a href="faq.html">FAQ</a>
           </li>
           </ul>
               <h5>Examples</h5>
             <ul>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using A Different JDK</a>
+                    <a href="examples/compile-using-different-jdk.html">Compile Using A Different JDK</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using -source and -target javac Options</a>
+                    <a href="examples/set-compiler-source-and-target.html">Compile Using -source and -target javac Options</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using Memory Allocation Enhancements</a>
+                    <a href="examples/compile-with-memory-enhancements.html">Compile Using Memory Allocation Enhancements</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Pass Compiler Arguments</a>
+                    <a href="examples/pass-compiler-arguments.html">Pass Compiler Arguments</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Non-javac compilerIds</a>
+                    <a href="non-javac-compilers.html">Non-javac compilerIds</a>
           </li>
           </ul>
               <h5>Project Documentation</h5>

Modified: websites/production/maventest/content/plugins/maven-compiler-plugin-latest/license.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-compiler-plugin-latest/license.html (original)
+++ websites/production/maventest/content/plugins/maven-compiler-plugin-latest/license.html Tue May  8 13:07:59 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>
@@ -62,7 +62,7 @@
                 <a href="http://maven.apache.org/plugins/index.html" class="externalLink">Plugins</a>
                 &gt;
       
-                <a href="../../../../../../../../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
+                <a href="../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
                   </div>
             <div class="xright">      
   
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2010-05-17
-              &nbsp;| Version: 2.3.1
+             Last Published: 2010-09-04
+              &nbsp;| Version: 2.3.2
             </div>
       <div class="clear">
         <hr/>
@@ -93,42 +93,42 @@
             <ul>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Introduction</a>
+                    <a href="index.html">Introduction</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Goals</a>
+                    <a href="plugin-info.html">Goals</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Usage</a>
+                    <a href="usage.html">Usage</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">FAQ</a>
+                    <a href="faq.html">FAQ</a>
           </li>
           </ul>
               <h5>Examples</h5>
             <ul>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using A Different JDK</a>
+                    <a href="examples/compile-using-different-jdk.html">Compile Using A Different JDK</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using -source and -target javac Options</a>
+                    <a href="examples/set-compiler-source-and-target.html">Compile Using -source and -target javac Options</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using Memory Allocation Enhancements</a>
+                    <a href="examples/compile-with-memory-enhancements.html">Compile Using Memory Allocation Enhancements</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Pass Compiler Arguments</a>
+                    <a href="examples/pass-compiler-arguments.html">Pass Compiler Arguments</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Non-javac compilerIds</a>
+                    <a href="non-javac-compilers.html">Non-javac compilerIds</a>
           </li>
           </ul>
               <h5>Project Documentation</h5>

Modified: websites/production/maventest/content/plugins/maven-compiler-plugin-latest/mail-lists.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-compiler-plugin-latest/mail-lists.html (original)
+++ websites/production/maventest/content/plugins/maven-compiler-plugin-latest/mail-lists.html Tue May  8 13:07:59 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>
@@ -62,7 +62,7 @@
                 <a href="http://maven.apache.org/plugins/index.html" class="externalLink">Plugins</a>
                 &gt;
       
-                <a href="../../../../../../../../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
+                <a href="../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
                   </div>
             <div class="xright">      
   
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2010-05-17
-              &nbsp;| Version: 2.3.1
+             Last Published: 2010-09-04
+              &nbsp;| Version: 2.3.2
             </div>
       <div class="clear">
         <hr/>
@@ -93,42 +93,42 @@
             <ul>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Introduction</a>
+                    <a href="index.html">Introduction</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Goals</a>
+                    <a href="plugin-info.html">Goals</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Usage</a>
+                    <a href="usage.html">Usage</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">FAQ</a>
+                    <a href="faq.html">FAQ</a>
           </li>
           </ul>
               <h5>Examples</h5>
             <ul>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using A Different JDK</a>
+                    <a href="examples/compile-using-different-jdk.html">Compile Using A Different JDK</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using -source and -target javac Options</a>
+                    <a href="examples/set-compiler-source-and-target.html">Compile Using -source and -target javac Options</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using Memory Allocation Enhancements</a>
+                    <a href="examples/compile-with-memory-enhancements.html">Compile Using Memory Allocation Enhancements</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Pass Compiler Arguments</a>
+                    <a href="examples/pass-compiler-arguments.html">Pass Compiler Arguments</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Non-javac compilerIds</a>
+                    <a href="non-javac-compilers.html">Non-javac compilerIds</a>
           </li>
           </ul>
               <h5>Project Documentation</h5>

Modified: websites/production/maventest/content/plugins/maven-compiler-plugin-latest/non-javac-compilers.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-compiler-plugin-latest/non-javac-compilers.html (original)
+++ websites/production/maventest/content/plugins/maven-compiler-plugin-latest/non-javac-compilers.html Tue May  8 13:07:59 2012
@@ -22,7 +22,7 @@
           <meta name="author" content="Edwin Punzalan" />
         <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="http://maven.apache.org/plugins/index.html" class="externalLink">Plugins</a>
                 &gt;
       
-                <a href="../../../../../../../../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
+                <a href="../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
                   </div>
             <div class="xright">      
   
@@ -73,8 +73,8 @@
             
   
     
-             Last Published: 2010-05-17
-              &nbsp;| Version: 2.3.1
+             Last Published: 2010-09-04
+              &nbsp;| Version: 2.3.2
             </div>
       <div class="clear">
         <hr/>
@@ -94,43 +94,43 @@
             <ul>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Introduction</a>
+                    <a href="index.html">Introduction</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Goals</a>
+                    <a href="plugin-info.html">Goals</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Usage</a>
+                    <a href="usage.html">Usage</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">FAQ</a>
+                    <a href="faq.html">FAQ</a>
           </li>
           </ul>
               <h5>Examples</h5>
             <ul>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using A Different JDK</a>
+                    <a href="examples/compile-using-different-jdk.html">Compile Using A Different JDK</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using -source and -target javac Options</a>
+                    <a href="examples/set-compiler-source-and-target.html">Compile Using -source and -target javac Options</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using Memory Allocation Enhancements</a>
+                    <a href="examples/compile-with-memory-enhancements.html">Compile Using Memory Allocation Enhancements</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Pass Compiler Arguments</a>
+                    <a href="examples/pass-compiler-arguments.html">Pass Compiler Arguments</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Non-javac compilerIds</a>
-          </li>
+              <strong>Non-javac compilerIds</strong>
+        </li>
           </ul>
               <h5>Project Documentation</h5>
             <ul>
@@ -271,7 +271,7 @@
       [...]
       &lt;plugin&gt;
         &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
-        &lt;version&gt;2.3.1&lt;/version&gt;
+        &lt;version&gt;2.3.2&lt;/version&gt;
         &lt;configuration&gt;
           &lt;compilerId&gt;csharp&lt;/compilerId&gt;
         &lt;/configuration&gt;
@@ -284,7 +284,8 @@
         &lt;/dependencies&gt;
       &lt;/plugin&gt;
   [...]
-&lt;/project&gt;</pre>
+&lt;/project&gt;
+</pre>
 </div>
 </div>
 </div>

Modified: websites/production/maventest/content/plugins/maven-compiler-plugin-latest/plugin-info.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-compiler-plugin-latest/plugin-info.html (original)
+++ websites/production/maventest/content/plugins/maven-compiler-plugin-latest/plugin-info.html Tue May  8 13:07:59 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>
@@ -62,7 +62,7 @@
                 <a href="http://maven.apache.org/plugins/index.html" class="externalLink">Plugins</a>
                 &gt;
       
-                <a href="../../../../../../../../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
+                <a href="../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
                   </div>
             <div class="xright">      
   
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2010-05-17
-              &nbsp;| Version: 2.3.1
+             Last Published: 2010-09-04
+              &nbsp;| Version: 2.3.2
             </div>
       <div class="clear">
         <hr/>
@@ -93,42 +93,42 @@
             <ul>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Introduction</a>
+                    <a href="index.html">Introduction</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Goals</a>
-          </li>
+              <strong>Goals</strong>
+        </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Usage</a>
+                    <a href="usage.html">Usage</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">FAQ</a>
+                    <a href="faq.html">FAQ</a>
           </li>
           </ul>
               <h5>Examples</h5>
             <ul>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using A Different JDK</a>
+                    <a href="examples/compile-using-different-jdk.html">Compile Using A Different JDK</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using -source and -target javac Options</a>
+                    <a href="examples/set-compiler-source-and-target.html">Compile Using -source and -target javac Options</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using Memory Allocation Enhancements</a>
+                    <a href="examples/compile-with-memory-enhancements.html">Compile Using Memory Allocation Enhancements</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Pass Compiler Arguments</a>
+                    <a href="examples/pass-compiler-arguments.html">Pass Compiler Arguments</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Non-javac compilerIds</a>
+                    <a href="non-javac-compilers.html">Non-javac compilerIds</a>
           </li>
           </ul>
               <h5>Project Documentation</h5>
@@ -347,7 +347,7 @@ to display parameter details.</td>
         &lt;plugin&gt;
           &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
           &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
-          &lt;version&gt;2.3.1&lt;/version&gt;
+          &lt;version&gt;2.3.2&lt;/version&gt;
         &lt;/plugin&gt;
         ...
       &lt;/plugins&gt;
@@ -357,7 +357,7 @@ to display parameter details.</td>
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
-        &lt;version&gt;2.3.1&lt;/version&gt;
+        &lt;version&gt;2.3.2&lt;/version&gt;
       &lt;/plugin&gt;
       ...
     &lt;/plugins&gt;

Modified: websites/production/maventest/content/plugins/maven-compiler-plugin-latest/plugin-management.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-compiler-plugin-latest/plugin-management.html (original)
+++ websites/production/maventest/content/plugins/maven-compiler-plugin-latest/plugin-management.html Tue May  8 13:07:59 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>
@@ -62,7 +62,7 @@
                 <a href="http://maven.apache.org/plugins/index.html" class="externalLink">Plugins</a>
                 &gt;
       
-                <a href="../../../../../../../../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
+                <a href="../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
                   </div>
             <div class="xright">      
   
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2010-05-17
-              &nbsp;| Version: 2.3.1
+             Last Published: 2010-09-04
+              &nbsp;| Version: 2.3.2
             </div>
       <div class="clear">
         <hr/>
@@ -93,42 +93,42 @@
             <ul>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Introduction</a>
+                    <a href="index.html">Introduction</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Goals</a>
+                    <a href="plugin-info.html">Goals</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Usage</a>
+                    <a href="usage.html">Usage</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">FAQ</a>
+                    <a href="faq.html">FAQ</a>
           </li>
           </ul>
               <h5>Examples</h5>
             <ul>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using A Different JDK</a>
+                    <a href="examples/compile-using-different-jdk.html">Compile Using A Different JDK</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using -source and -target javac Options</a>
+                    <a href="examples/set-compiler-source-and-target.html">Compile Using -source and -target javac Options</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using Memory Allocation Enhancements</a>
+                    <a href="examples/compile-with-memory-enhancements.html">Compile Using Memory Allocation Enhancements</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Pass Compiler Arguments</a>
+                    <a href="examples/pass-compiler-arguments.html">Pass Compiler Arguments</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Non-javac compilerIds</a>
+                    <a href="non-javac-compilers.html">Non-javac compilerIds</a>
           </li>
           </ul>
               <h5>Project Documentation</h5>

Modified: websites/production/maventest/content/plugins/maven-compiler-plugin-latest/plugins.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-compiler-plugin-latest/plugins.html (original)
+++ websites/production/maventest/content/plugins/maven-compiler-plugin-latest/plugins.html Tue May  8 13:07:59 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>
@@ -62,7 +62,7 @@
                 <a href="http://maven.apache.org/plugins/index.html" class="externalLink">Plugins</a>
                 &gt;
       
-                <a href="../../../../../../../../../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
+                <a href="../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Maven Compiler Plugin</a>
                   </div>
             <div class="xright">      
   
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2010-05-17
-              &nbsp;| Version: 2.3.1
+             Last Published: 2010-09-04
+              &nbsp;| Version: 2.3.2
             </div>
       <div class="clear">
         <hr/>
@@ -93,42 +93,42 @@
             <ul>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Introduction</a>
+                    <a href="index.html">Introduction</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Goals</a>
+                    <a href="plugin-info.html">Goals</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Usage</a>
+                    <a href="usage.html">Usage</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">FAQ</a>
+                    <a href="faq.html">FAQ</a>
           </li>
           </ul>
               <h5>Examples</h5>
             <ul>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using A Different JDK</a>
+                    <a href="examples/compile-using-different-jdk.html">Compile Using A Different JDK</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using -source and -target javac Options</a>
+                    <a href="examples/set-compiler-source-and-target.html">Compile Using -source and -target javac Options</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Compile Using Memory Allocation Enhancements</a>
+                    <a href="examples/compile-with-memory-enhancements.html">Compile Using Memory Allocation Enhancements</a>
           </li>
               
     <li class="none">
-                    <a href="../../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Pass Compiler Arguments</a>
+                    <a href="examples/pass-compiler-arguments.html">Pass Compiler Arguments</a>
           </li>
               
     <li class="none">
-                    <a href="../home/release/maven-compiler-plugin/target/checkout/../../../../../people.apache.org/www/maven.apache.org/plugins/maven-compiler-plugin">Non-javac compilerIds</a>
+                    <a href="non-javac-compilers.html">Non-javac compilerIds</a>
           </li>
           </ul>
               <h5>Project Documentation</h5>