You are viewing a plain text version of this content. The canonical link for it is here.
Posted to nmaven-commits@incubator.apache.org by si...@apache.org on 2007/02/09 21:53:46 UTC

svn commit: r505521 - in /incubator/nmaven/www: ./ images/ plugins/

Author: sisbell
Date: Fri Feb  9 13:53:45 2007
New Revision: 505521

URL: http://svn.apache.org/viewvc?view=rev&rev=505521
Log:
Update website: Capability/Requirement Matching section.

Added:
    incubator/nmaven/www/images/matching_diagram.png   (with props)
Modified:
    incubator/nmaven/www/adding-plugins.html
    incubator/nmaven/www/dependencies.html
    incubator/nmaven/www/environment-configuration.html
    incubator/nmaven/www/features.html
    incubator/nmaven/www/getting-started.html
    incubator/nmaven/www/index.html
    incubator/nmaven/www/integration.html
    incubator/nmaven/www/issue-tracking.html
    incubator/nmaven/www/license.html
    incubator/nmaven/www/mail-lists.html
    incubator/nmaven/www/plugins/index.html
    incubator/nmaven/www/project-info.html
    incubator/nmaven/www/project-summary.html
    incubator/nmaven/www/source-repository.html
    incubator/nmaven/www/team-list.html

Modified: incubator/nmaven/www/adding-plugins.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/adding-plugins.html?view=diff&rev=505521&r1=505520&r2=505521
==============================================================================
--- incubator/nmaven/www/adding-plugins.html (original)
+++ incubator/nmaven/www/adding-plugins.html Fri Feb  9 13:53:45 2007
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 02/05/2007
+        Last Published: 02/09/2007
                       </div>
             <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
           |
@@ -104,6 +104,10 @@
               
     <li class="none">
               <a href="environment-configuration.html">Configuration</a>
+        </li>
+              
+    <li class="none">
+              <a href="apidocs/index.html">JavaDocs</a>
         </li>
           </ul>
           <h5>Project Documentation</h5>

Modified: incubator/nmaven/www/dependencies.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/dependencies.html?view=diff&rev=505521&r1=505520&r2=505521
==============================================================================
--- incubator/nmaven/www/dependencies.html (original)
+++ incubator/nmaven/www/dependencies.html Fri Feb  9 13:53:45 2007
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 02/07/2007
+        Last Published: 02/09/2007
                       </div>
             <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
           |

Modified: incubator/nmaven/www/environment-configuration.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/environment-configuration.html?view=diff&rev=505521&r1=505520&r2=505521
==============================================================================
--- incubator/nmaven/www/environment-configuration.html (original)
+++ incubator/nmaven/www/environment-configuration.html Fri Feb  9 13:53:45 2007
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 02/05/2007
+        Last Published: 02/09/2007
                       </div>
             <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
           |
@@ -105,6 +105,10 @@
     <li class="none">
               <strong>Configuration</strong>
         </li>
+              
+    <li class="none">
+              <a href="apidocs/index.html">JavaDocs</a>
+        </li>
           </ul>
           <h5>Project Documentation</h5>
         <ul>
@@ -145,7 +149,70 @@
     </div>
     <div id="bodyColumn">
       <div id="contentBox">
-        <div class="section"><h2>Configuring the Environment</h2><div class="section"><h3>How NMaven Chooses the Compiler Environment</h3><p>NMaven chooses the correct compiler by the following rules:</p><ol type="1"><li>Is the &lt;vendor/&gt; tag set? If it is set, go to (2). If not, then detect operating system. If OS is windows, set the vendor to MICROSOFT. If OS is not windows, set the vendor to MONO.</li><li>Is the &lt;language&gt; tag set? If it is set, go to (3). If not, then set the language to C_SHARP.</li><li>Is the &lt;frameworkVersion/&gt; tag set? If it is set, go to (4). If not, then set the version to 2.0.50727</li><li>Is the &lt;profile&gt; tag set? If if is set, go to (5). If not, then set to the value &quot;FULL&quot;.</li><li>Is there a match in the compiler-plugins.xml for the given vendor, language, frameworkVersion, profile and operating system? If not, fail the build. If so, instantiate the correct compiler plugin.</li><li>If vendor is MICROSOFT, then 
 set the execution path to C:\WINDOWS\Microsoft.NET\Framework\v$<a name="frameworkVersion">frameworkVersion</a>\$<a name="executable">executable</a>. If this directory does not exist, fail the build. Note that this execution path is hard-coded, and precludes you from running the compiler from a non-standard location. In a future release, NMaven will read the value from the registry. If vendor is not MICROSOFT, then NMaven will run whatever is specified within the path.</li></ol></div><div class="section"><h3>CSharp2.0:exe:Microsoft</h3><div class="source"><pre>
+        <div class="section"><h2>Sections</h2><ul><li><a href="environment-configuration.html#Configuring the Environment">Configuring the Environment</a></li><li><a href="environment-configuration.html#Sample Configuration Files">Sample Configuration Files</a></li></ul></div><div class="section"><h2><a name="Configuring the Environment">Configuring the Environment</a></h2><div class="section"><h3>Introduction</h3><p>NMaven is based on the concept of platform capabilities and platform requirements. Examples of platform capabilities include:</p><ol type="1"><li>Linux (or Windows OS)</li><li>Mono 1.1.18 installed, Microsoft 2.0 installed</li><li>PHP .NET compiler (from 3rd party)</li></ol><p>Platform requirements are those build requirements specified by the developer. Typically, the requirements are given either within the pom.xml or the nmaven-settings.xml file. Examples of platform requirements include:</p><ol type="1"><li>C# target language</li><li>Microsoft SDK</li><li>Fr
 amework version 2.0</li><li>Compact Profile</li></ol><p>It is up to NMaven to understand what the developer is asking for (platform requirements) and to determine whether the build machine can support the requirements (with its platform capabilities). If the capabilities match the requirements, NMaven will return an executable (or compiler) that satifies the requirements.</p></div><div class="section"><h3>Capability/Requirement Matching</h3><img src="./images/matching_diagram.png" /><p>Consider the sequence diagram above. The developer provides the compiler requirements - vendor, vendor version, framework version, language and profile - within the pom.xml build file.</p><div class="source"><pre>&lt;plugin&gt;
+    &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+    &lt;artifactId&gt;maven-compile-plugin&lt;/artifactId&gt;
+    &lt;extensions&gt;true&lt;/extensions&gt;
+    &lt;configuration&gt;
+        &lt;vendor&gt;MICROSOFT&lt;/vendor&gt;
+        &lt;language&gt;C_SHARP&lt;/language&gt;
+        &lt;frameworkVersion&gt;1.1.4322&lt;/frameworkVersion&gt;
+        &lt;profile&gt;COMPACT&lt;/profile&gt;
+    &lt;/configuration&gt;
+&lt;/plugin&gt;
+
</pre></div><p>Next, the <tt>CompilerMojo</tt> class instance creates a <tt>CompilerConfig</tt> object (2), which contains artifact type (library, module) and key info. The compiler needs the configuration information during execution, but the information is not necessary for NMaven to match the correct compiler.</p><p>The <tt>CompilerMojo</tt> object invokes the <tt>NetExecutableFactory.getCompilerExecutableFor</tt> method, passing in the <tt>CompilerConfig</tt> and <tt>CompilerRequirement</tt> objects as parameters (3). In step (18), the <tt>getCompilerExecutableFor</tt> method returns a fully initialized <tt>CompilerExecutable</tt> object. From the <tt>CompilerMojo</tt> class instance perspective, it simply constructs <tt>CompilerConfig</tt> and <tt>CompilerRequirement</tt> objects based on parameters within the pom and gets back a fully initialized <tt>CompilerExecutable</tt> object from the <tt>NetExecutableFactory</tt>.</p><p>Now let’s dig a little deeper and see wha
 t’s going on underneath. The <tt>NetExecutableFactory</tt> object creates a <tt>VendorInfo</tt> object (4) and populates the <tt>VendorInfo</tt> object with information – vendor, vendor version and framework version – from the <tt>CompilerRequirement</tt> object (5). In short, we have a transfer of specific vendor information from the <tt>CompilerRequirement</tt> object to the <tt>VendorInfo</tt> object because the <tt>StateMachineProcessor</tt> is only concerned with the vendor information, which is the only required information for making a capability match (others are optionally used, if specified, but no attempt is made to infer them if they don't exist).</p><p>The <tt>StateMachineProcessor</tt> fills in the missing vendor info (6, 7) based on a set of rules. Vendor-info may be missing for any number of reasons. For example, a project may compile across multiple vendors (Microsoft/Novell) or framework versions. In this case, the developer may choose to leave say the &
 lt;vendor/&gt; and &lt;frameworkVersion/&gt; tags within the pom.xml blank. The <tt>StateMachineProcessor</tt> object uses the ~/.m2/nmaven-settings.xml file (if it exists) to assist in infering the vendor information for the specific build machine. As you can see below, within the nmaven-settings.xml file there is a default setup (which the developer can change).</p><div class="source"><pre>&lt;nmavenSettings&gt;
+  &lt;defaultSetup&gt;
+    &lt;vendorName&gt;MICROSOFT&lt;/vendorName&gt;
+    &lt;vendorVersion&gt;2.0.50727&lt;/vendorVersion&gt;
+    &lt;frameworkVersion&gt;2.0.50727&lt;/frameworkVersion&gt;
+  &lt;/defaultSetup&gt;
+  ...
+&lt;/nmavenSettings&gt;
</pre></div><p>There are 23 states of vendor-info and both a start and stop state (for a total of 25 states). The notation is {Vendor, Vendor Version, Framework Version}. For Vendor, M denotes Microsoft, N denotes Novell, G denotes DotGNU and F denotes false (unknown vendor). For Vendor Version and Framework Version, T denotes true (it exists), while F denotes false (does not exist). So NFT means that the NMaven knows that it needs to choose a Novell (MONO) compiler and knows the framework version but not the vendor version.</p><p>The 23 vendor-info states are defined below. They are divided between general states, states that can be determined through an nmaven-settings file and states that can be determined without an nmaven-settings file.</p><table class="bodyTable"><tbody><tr class="a"><td align="left"><b>STATE</b></td><td align="left"><b>Description</b></td></tr><tr class="b"><td align="left"><b>General States</b></td><td align="left"></td></tr><
 tr class="a"><td align="left">MTT</td><td align="left">Vendor is Microsoft, vendor version exists, framework version exists</td></tr><tr class="b"><td align="left">MTF</td><td align="left">Vendor is Microsoft, vendor version does not exist, framework version exists</td></tr><tr class="a"><td align="left">MFT</td><td align="left">Vendor is Microsoft, vendor version does not exist, framework version does not exist</td></tr><tr class="b"><td align="left">NTT</td><td align="left">Vendor is Novell, vendor version exists, framework version exists</td></tr><tr class="a"><td align="left"><b>Settings File States</b></td><td align="left"></td></tr><tr class="b"><td align="left">MFF</td><td align="left">Vendor is Microsoft, vendor version does not exist, framework version does not exist</td></tr><tr class="a"><td align="left">FTF</td><td align="left">Vendor is unknown, vendor version exists, framework version does not exist</td></tr><tr class="b"><td align="left">FFT</td><td align="lef
 t">Vendor is unknown, vendor version does not exist, framework version exists</td></tr><tr class="a"><td align="left">FTT</td><td align="left">Vendor is unknown, vendor version exists, framework version exists</td></tr><tr class="b"><td align="left">FFF</td><td align="left">Vendor is unknown, vendor version does not exist, framework version does not exist</td></tr><tr class="a"><td align="left">NFT</td><td align="left">Vendor is Novell, vendor version does not exist, framework version exists</td></tr><tr class="b"><td align="left">NTF</td><td align="left">Vendor is Novell, vendor version exists, framework version does not exist</td></tr><tr class="a"><td align="left">NTT</td><td align="left">Vendor is Novell, vendor version exists, framework version exist</td></tr><tr class="b"><td align="left">NFF</td><td align="left">Vendor is Novell, vendor version does not exist, framework version does not exist</td></tr><tr class="a"><td align="left">GFF</td><td align="left">Vendor is G
 NU vendor version does not exist, framework version does not exist</td></tr><tr class="b"><td align="left"><b>No Settings File States</b></td><td align="left"></td></tr><tr class="a"><td align="left">MFF_NoSettings</td><td align="left">Vendor is Microsoft, vendor version does not exist, framework version does not exist</td></tr><tr class="b"><td align="left">NFT_NoSettings</td><td align="left">Vendor is Novell, vendor version exists, framework version does not exist</td></tr><tr class="a"><td align="left">NTF_NoSettings</td><td align="left">Vendor is Novell, vendor version exists, framework version does not exist</td></tr><tr class="b"><td align="left">FTF_NoSettings</td><td align="left">Vendor is unknown, vendor version exists, framework version does not exist</td></tr><tr class="a"><td align="left">FFT_NoSettings</td><td align="left">Vendor is unknown, vendor version does not exist, framework version exists</td></tr><tr class="b"><td align="left">FTT_NoSettings</td><td ali
 gn="left">Vendor is unknown, vendor version exists, framework version exists</td></tr><tr class="a"><td align="left">FFF_NoSettings</td><td align="left">Vendor is unknown, vendor version does not exist, framework version does not exist</td></tr><tr class="b"><td align="left">NFF_NoSettings</td><td align="left">Vendor is Novell, vendor version does not exist, framework version does not exist</td></tr><tr class="a"><td align="left">GFF_NoSettings</td><td align="left">Vendor is GNU vendor version does not exist, framework version does not exist</td></tr></tbody></table><p>Going back to the sequence diagram, the <tt>NetExecutableFactory</tt> object fills in the missing vendor information into the <tt>CompilerRequirement</tt> object (8): we now have a complete <tt>CompilerRequirement</tt> to use for matching. The <tt>NetExecutableFactory</tt> object initializes the <tt>CompilerContext</tt>, passing in the <tt>CompilerRequirement</tt> and <tt>CompilerConfig</tt> objects. During in
 itialization, the <tt>CompilerContext</tt> object invokes <tt>CompilerMatcher.matchCompilerCapabilitiesFor(requirement)</tt> (10). The <tt>CompilerMatcher</tt> class instance creates a list of platform capabilities (11) and matches <tt>CompilerCapability</tt> properties to the <tt>CompilerRequirement</tt> properties (12). The <tt>CompilerMatcher</tt> gets the class name of the <tt>CompilerExecutable</tt> by invoking <tt>CompilerRequirement.getPluginClassName()</tt> (13). The <tt>CompilerMatcher</tt> dynamically instatiates and initializes the <tt>CompilerExecutable</tt> (14).</p><p>The <tt>CompilerExecutable</tt> is returned to the <tt>CompilerMojo</tt> (16, 17, 18), which then executes the Compiler (19).</p></div></div><div class="section"><h2><a name="Sample Configuration Files">Sample Configuration Files</a></h2><div class="section"><h3>CSharp2.0:exe:Microsoft</h3><div class="source"><pre>
+&lt;project&gt;
+    &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
+    &lt;groupId&gt;org.apache.maven.ms.csharp&lt;/groupId&gt;
+    &lt;artifactId&gt;it-0001&lt;/artifactId&gt;
+    &lt;packaging&gt;exe&lt;/packaging&gt;
+    &lt;version&gt;0.1.0.0&lt;/version&gt;
+    &lt;name&gt;csharp: it-0001&lt;/name&gt;
+
+    &lt;build&gt;
+        &lt;sourceDirectory&gt;src/main/csharp&lt;/sourceDirectory&gt;
+        &lt;testSourceDirectory&gt;src/test/csharp&lt;/testSourceDirectory&gt;
+        &lt;plugins&gt;
+            &lt;plugin&gt;
+                &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                &lt;artifactId&gt;maven-compile-plugin&lt;/artifactId&gt;
+                &lt;extensions&gt;true&lt;/extensions&gt;
+            &lt;/plugin&gt;
+        &lt;/plugins&gt;
+    &lt;/build&gt;
+&lt;/project&gt;
+
</pre></div></div><div class="section"><h3>CSharp3.0:exe:Microsoft (on Windows)</h3><div class="source"><pre>
+&lt;project&gt;
+    &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
+    &lt;groupId&gt;org.apache.maven.ms.csharp&lt;/groupId&gt;
+    &lt;artifactId&gt;it-0001&lt;/artifactId&gt;
+    &lt;packaging&gt;exe&lt;/packaging&gt;
+    &lt;version&gt;0.1.0.0&lt;/version&gt;
+    &lt;name&gt;csharp: it-0001&lt;/name&gt;
+
+    &lt;build&gt;
+        &lt;sourceDirectory&gt;src/main/csharp&lt;/sourceDirectory&gt;
+        &lt;testSourceDirectory&gt;src/test/csharp&lt;/testSourceDirectory&gt;
+        &lt;plugins&gt;
+            &lt;plugin&gt;
+                &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                &lt;artifactId&gt;maven-compile-plugin&lt;/artifactId&gt;
+                &lt;extensions&gt;true&lt;/extensions&gt;
+                &lt;configuration&gt;
+                    &lt;frameworkVersion&gt;3.0&lt;/frameworkVersion&gt;
+                &lt;/configuration&gt;
+            &lt;/plugin&gt;
+        &lt;/plugins&gt;
+    &lt;/build&gt;
+&lt;/project&gt;
+
</pre></div></div><div class="section"><h3>CSharp1.1:exe:Microsoft (on Windows)</h3><div class="source"><pre>
 &lt;project&gt;
     &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
     &lt;groupId&gt;org.apache.maven.ms.csharp&lt;/groupId&gt;
@@ -162,11 +229,14 @@
                 &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
                 &lt;artifactId&gt;maven-compile-plugin&lt;/artifactId&gt;
                 &lt;extensions&gt;true&lt;/extensions&gt;
+                &lt;configuration&gt;
+                    &lt;frameworkVersion&gt;1.1.4322&lt;/frameworkVersion&gt;
+                &lt;/configuration&gt;
             &lt;/plugin&gt;
         &lt;/plugins&gt;
     &lt;/build&gt;
 &lt;/project&gt;
-
</pre></div></div><div class="section"><h3>CSharp1.1:exe:Microsoft</h3><div class="source"><pre>
+
</pre></div></div><div class="section"><h3>CSharp1.1:exe:Mono (on Linux)</h3><div class="source"><pre>
 &lt;project&gt;
     &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
     &lt;groupId&gt;org.apache.maven.ms.csharp&lt;/groupId&gt;
@@ -215,7 +285,7 @@
         &lt;/plugins&gt;
     &lt;/build&gt;
 &lt;/project&gt;
-
</pre></div></div><div class="section"><h3>CSharp1.1:module:Mono</h3><p>You will only need to use the MONO vendor field if you want to build MONO on windows: MONO is the default vendor for other OS's.</p><div class="source"><pre>
+
</pre></div></div><div class="section"><h3>CSharp1.1:module:Mono (on Windows)</h3><p>You will only need to use the MONO vendor field if you want to build MONO on windows: MONO is the default vendor for other OS's.</p><div class="source"><pre>
 &lt;project&gt;
     &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
     &lt;groupId&gt;org.apache.maven.mono.csharp&lt;/groupId&gt;

Modified: incubator/nmaven/www/features.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/features.html?view=diff&rev=505521&r1=505520&r2=505521
==============================================================================
--- incubator/nmaven/www/features.html (original)
+++ incubator/nmaven/www/features.html Fri Feb  9 13:53:45 2007
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 02/06/2007
+        Last Published: 02/09/2007
                       </div>
             <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
           |
@@ -104,6 +104,10 @@
               
     <li class="none">
               <a href="environment-configuration.html">Configuration</a>
+        </li>
+              
+    <li class="none">
+              <a href="apidocs/index.html">JavaDocs</a>
         </li>
           </ul>
           <h5>Project Documentation</h5>

Modified: incubator/nmaven/www/getting-started.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/getting-started.html?view=diff&rev=505521&r1=505520&r2=505521
==============================================================================
--- incubator/nmaven/www/getting-started.html (original)
+++ incubator/nmaven/www/getting-started.html Fri Feb  9 13:53:45 2007
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 02/06/2007
+        Last Published: 02/09/2007
                       </div>
             <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
           |
@@ -104,6 +104,10 @@
               
     <li class="none">
               <a href="environment-configuration.html">Configuration</a>
+        </li>
+              
+    <li class="none">
+              <a href="apidocs/index.html">JavaDocs</a>
         </li>
           </ul>
           <h5>Project Documentation</h5>

Added: incubator/nmaven/www/images/matching_diagram.png
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/images/matching_diagram.png?view=auto&rev=505521
==============================================================================
Binary file - no diff available.

Propchange: incubator/nmaven/www/images/matching_diagram.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Modified: incubator/nmaven/www/index.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/index.html?view=diff&rev=505521&r1=505520&r2=505521
==============================================================================
--- incubator/nmaven/www/index.html (original)
+++ incubator/nmaven/www/index.html Fri Feb  9 13:53:45 2007
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 02/06/2007
+        Last Published: 02/09/2007
                       </div>
             <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
           |
@@ -104,6 +104,10 @@
               
     <li class="none">
               <a href="environment-configuration.html">Configuration</a>
+        </li>
+              
+    <li class="none">
+              <a href="apidocs/index.html">JavaDocs</a>
         </li>
           </ul>
           <h5>Project Documentation</h5>

Modified: incubator/nmaven/www/integration.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/integration.html?view=diff&rev=505521&r1=505520&r2=505521
==============================================================================
--- incubator/nmaven/www/integration.html (original)
+++ incubator/nmaven/www/integration.html Fri Feb  9 13:53:45 2007
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 02/07/2007
+        Last Published: 02/09/2007
                       </div>
             <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
           |

Modified: incubator/nmaven/www/issue-tracking.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/issue-tracking.html?view=diff&rev=505521&r1=505520&r2=505521
==============================================================================
--- incubator/nmaven/www/issue-tracking.html (original)
+++ incubator/nmaven/www/issue-tracking.html Fri Feb  9 13:53:45 2007
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 02/07/2007
+        Last Published: 02/09/2007
                       </div>
             <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
           |

Modified: incubator/nmaven/www/license.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/license.html?view=diff&rev=505521&r1=505520&r2=505521
==============================================================================
--- incubator/nmaven/www/license.html (original)
+++ incubator/nmaven/www/license.html Fri Feb  9 13:53:45 2007
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 02/07/2007
+        Last Published: 02/09/2007
                       </div>
             <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
           |

Modified: incubator/nmaven/www/mail-lists.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/mail-lists.html?view=diff&rev=505521&r1=505520&r2=505521
==============================================================================
--- incubator/nmaven/www/mail-lists.html (original)
+++ incubator/nmaven/www/mail-lists.html Fri Feb  9 13:53:45 2007
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 02/07/2007
+        Last Published: 02/09/2007
                       </div>
             <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
           |

Modified: incubator/nmaven/www/plugins/index.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/index.html?view=diff&rev=505521&r1=505520&r2=505521
==============================================================================
--- incubator/nmaven/www/plugins/index.html (original)
+++ incubator/nmaven/www/plugins/index.html Fri Feb  9 13:53:45 2007
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 02/05/2007
+        Last Published: 02/09/2007
                       </div>
             <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
           |
@@ -104,6 +104,10 @@
               
     <li class="none">
               <a href="../environment-configuration.html">Configuration</a>
+        </li>
+              
+    <li class="none">
+              <a href="../apidocs/index.html">JavaDocs</a>
         </li>
           </ul>
           <h5>Project Documentation</h5>

Modified: incubator/nmaven/www/project-info.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/project-info.html?view=diff&rev=505521&r1=505520&r2=505521
==============================================================================
--- incubator/nmaven/www/project-info.html (original)
+++ incubator/nmaven/www/project-info.html Fri Feb  9 13:53:45 2007
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 02/07/2007
+        Last Published: 02/09/2007
                       </div>
             <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
           |

Modified: incubator/nmaven/www/project-summary.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/project-summary.html?view=diff&rev=505521&r1=505520&r2=505521
==============================================================================
--- incubator/nmaven/www/project-summary.html (original)
+++ incubator/nmaven/www/project-summary.html Fri Feb  9 13:53:45 2007
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 02/07/2007
+        Last Published: 02/09/2007
                       </div>
             <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
           |

Modified: incubator/nmaven/www/source-repository.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/source-repository.html?view=diff&rev=505521&r1=505520&r2=505521
==============================================================================
--- incubator/nmaven/www/source-repository.html (original)
+++ incubator/nmaven/www/source-repository.html Fri Feb  9 13:53:45 2007
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 02/07/2007
+        Last Published: 02/09/2007
                       </div>
             <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
           |

Modified: incubator/nmaven/www/team-list.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/team-list.html?view=diff&rev=505521&r1=505520&r2=505521
==============================================================================
--- incubator/nmaven/www/team-list.html (original)
+++ incubator/nmaven/www/team-list.html Fri Feb  9 13:53:45 2007
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 02/07/2007
+        Last Published: 02/09/2007
                       </div>
             <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
           |