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/05 22:01:47 UTC

svn commit: r503893 [3/13] - in /incubator/nmaven/www: ./ css/ images/ images/logos/ plugins/ plugins/maven-compile-plugin/ plugins/maven-compile-plugin/css/ plugins/maven-compile-plugin/images/ plugins/maven-compile-plugin/images/logos/ plugins/maven-...

Added: incubator/nmaven/www/plugins/maven-compile-plugin/how-to-use.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/how-to-use.html?view=auto&rev=503893
==============================================================================
--- incubator/nmaven/www/plugins/maven-compile-plugin/how-to-use.html (added)
+++ incubator/nmaven/www/plugins/maven-compile-plugin/how-to-use.html Mon Feb  5 14:01:37 2007
@@ -0,0 +1,173 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>NMaven - </title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            maven-compile-plugin
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/05/2007
+                      </div>
+            <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
+          |
+          <a href="http://incubator.apache.org/nmaven">NMaven</a>
+          |
+          <a href="http://svn.apache.org/repos/asf/incubator/nmaven/">NMaven SVN</a>
+          |
+          <a href="http://maven.apache.org/">Maven</a>
+          |
+          <a href="http://www.mono-project.com/">Mono Project</a>
+          |
+          <a href="http://dotgnu.org/">DotGNU</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+                   <h5>General Info</h5>
+        <ul>
+              
+    <li class="none">
+              <a href="index.html">About</a>
+        </li>
+              
+    <li class="none">
+              <strong>How to Use</strong>
+        </li>
+          </ul>
+          <h5>Project Documentation</h5>
+        <ul>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+        <li class="collapsed">
+              <a href="project-info.html">Project Information</a>
+              </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>How to Use</h2><p>Also make sure that you read <a href="http://incubator.apache.org/nmaven/environment-configuration.html"> Configuration</a></p><div class="section"><h3>Pass-Through Compiler Commands</h3><p>There may be cases that the specific compiler option that you want to use may not be directly supported by the nmaven-compile-plugin. In this case, you can use the parameter(s) tag to pass through the command to the compiler. Be aware that the command filter specified within the compiler-plugins.xml may choose not to pass this parameter to the compiler. Typically, this will only be done for unsupported commands: (you will see a warn message in the output if this occurs).</p><div class="source"><pre>&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;parameters&gt;
+                &lt;parameter&gt;/optimize+&lt;/parameter&gt;
+            &lt;/parameters&gt;
+        &lt;/configuration&gt;
+    &lt;/plugin&gt;
+&lt;/plugins&gt;
</pre></div></div><div class="section"><h3>Setting Framework Version</h3><p>By default, the framework version for the main compile and the test compile are both 2.0.50727. To change this to version 1.1, set the &lt;frameworkVersion/&gt; &amp; &lt;testFramework/&gt; tags. Note that setting the &lt;frameworkVersion/&gt; to 1.1.4322, will not set the &lt;testFrameworkVersion/&gt;: you will need to set both if your project also includes NUnit tests.</p><div class="source"><pre>&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;parameters&gt;
+                &lt;frameworkVersion&gt;1.1.4322&lt;/frameworkVersion&gt;
+                &lt;testFrameworkVersion&gt;1.1.4322&lt;/testFrameworkVersion&gt;
+            &lt;/parameters&gt;
+        &lt;/configuration&gt;
+    &lt;/plugin&gt;
+&lt;/plugins&gt;
</pre></div><p>The frameworkVersion is not supported for DotGNU: it depends on the target profile that the compiler was built under.</p></div><div class="section"><h3>Compiling for Multiple Platforms</h3><p>It is important to understand what setting the &lt;vendor/&gt; tag means for multi-platform builds.</p><ul><li>In the case of not setting the &lt;vendor/&gt; tag, NMaven will use the Microsoft compiler for the windows platform and MONO for all other platforms. By not specifying the vendor, you are indicating that the application should build with with both Microsoft and Mono compilers. For most development environments, Microsoft is installed on Windows, and Mono comes by default on many Linux distributions: so this option is usually a safe bet for multi-platform builds.</li><li>In the case of setting the &lt;vendor/&gt; tag to MICROSOFT, the application will only build under that compiler on Windows. If you are using any Microsoft specific APIs (or any o
 f the missing APIs in MONO), then you should set the vendor tag to MICROSOFT.</li><li>In the case of setting the &lt;vendor/&gt; tag to MONO, the platform obviously must have Mono installed to be buildable. This option should be used if you are using any of the Mono specific APIs that you are not including within the dependency path of Maven.</li><li>In the case of setting the &lt;vendor/&gt; tag to DotGNU, the platform obviously must have DotGnu installed to be buildable. The DotGNU compiler is not included as a default for any of the platforms: so to target this environment, you must set the &lt;vendor/&gt; tag. Also you may run into some problems since there is currently no way to set the frameworkVersion/profile. I am giving some thought to this problem, so keep an eye on the documentation.</li></ul></div></div>
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2007
+    
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Added: incubator/nmaven/www/plugins/maven-compile-plugin/images/collapsed.gif
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/images/collapsed.gif?view=auto&rev=503893
==============================================================================
Binary file - no diff available.

Propchange: incubator/nmaven/www/plugins/maven-compile-plugin/images/collapsed.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/nmaven/www/plugins/maven-compile-plugin/images/expanded.gif
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/images/expanded.gif?view=auto&rev=503893
==============================================================================
Binary file - no diff available.

Propchange: incubator/nmaven/www/plugins/maven-compile-plugin/images/expanded.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/nmaven/www/plugins/maven-compile-plugin/images/external.png
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/images/external.png?view=auto&rev=503893
==============================================================================
Binary file - no diff available.

Propchange: incubator/nmaven/www/plugins/maven-compile-plugin/images/external.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: incubator/nmaven/www/plugins/maven-compile-plugin/images/icon_error_sml.gif
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/images/icon_error_sml.gif?view=auto&rev=503893
==============================================================================
Binary file - no diff available.

Propchange: incubator/nmaven/www/plugins/maven-compile-plugin/images/icon_error_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/nmaven/www/plugins/maven-compile-plugin/images/icon_info_sml.gif
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/images/icon_info_sml.gif?view=auto&rev=503893
==============================================================================
Binary file - no diff available.

Propchange: incubator/nmaven/www/plugins/maven-compile-plugin/images/icon_info_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/nmaven/www/plugins/maven-compile-plugin/images/icon_success_sml.gif
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/images/icon_success_sml.gif?view=auto&rev=503893
==============================================================================
Binary file - no diff available.

Propchange: incubator/nmaven/www/plugins/maven-compile-plugin/images/icon_success_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/nmaven/www/plugins/maven-compile-plugin/images/icon_warning_sml.gif
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/images/icon_warning_sml.gif?view=auto&rev=503893
==============================================================================
Binary file - no diff available.

Propchange: incubator/nmaven/www/plugins/maven-compile-plugin/images/icon_warning_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/nmaven/www/plugins/maven-compile-plugin/images/logos/maven-feather.png
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/images/logos/maven-feather.png?view=auto&rev=503893
==============================================================================
Binary file - no diff available.

Propchange: incubator/nmaven/www/plugins/maven-compile-plugin/images/logos/maven-feather.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: incubator/nmaven/www/plugins/maven-compile-plugin/images/newwindow.png
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/images/newwindow.png?view=auto&rev=503893
==============================================================================
Binary file - no diff available.

Propchange: incubator/nmaven/www/plugins/maven-compile-plugin/images/newwindow.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: incubator/nmaven/www/plugins/maven-compile-plugin/index.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/index.html?view=auto&rev=503893
==============================================================================
--- incubator/nmaven/www/plugins/maven-compile-plugin/index.html (added)
+++ incubator/nmaven/www/plugins/maven-compile-plugin/index.html Mon Feb  5 14:01:37 2007
@@ -0,0 +1,212 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>NMaven - 
+    maven-compile-plugin - Overview</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            maven-compile-plugin
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/05/2007
+                      </div>
+            <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
+          |
+          <a href="http://incubator.apache.org/nmaven">NMaven</a>
+          |
+          <a href="http://svn.apache.org/repos/asf/incubator/nmaven/">NMaven SVN</a>
+          |
+          <a href="http://maven.apache.org/">Maven</a>
+          |
+          <a href="http://www.mono-project.com/">Mono Project</a>
+          |
+          <a href="http://dotgnu.org/">DotGNU</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+                   <h5>General Info</h5>
+        <ul>
+              
+    <li class="none">
+              <strong>About</strong>
+        </li>
+              
+    <li class="none">
+              <a href="how-to-use.html">How to Use</a>
+        </li>
+          </ul>
+          <h5>Project Documentation</h5>
+        <ul>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+        <li class="collapsed">
+              <a href="project-info.html">Project Information</a>
+              </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        
+  
+  
+    <a name="maven-compile-plugin"></a><div class="section"><h2>maven-compile-plugin</h2>
+      <p>Goals available: </p>
+      <table class="bodyTable">
+        <tr class="a">
+          <th>Goal</th>
+          <th>Description</th>
+        </tr>
+        <tr class="b">
+          <td>
+            <a href="generate-assembly-info-mojo.html">
+              <code>compile:generate-assembly-info</code>
+            </a>
+          </td>
+          <td>Generates an AssemblyInfo.* class based on information within the pom file.</td>
+        </tr>
+        <tr class="a">
+          <td>
+            <a href="compile-mojo.html">
+              <code>compile:compile</code>
+            </a>
+          </td>
+          <td>Maven Mojo for compiling Class files to the .NET Intermediate Language. To use a specific vendor (MICROSOFT/MONO) or language, the compiler/language must be previously installed AND configured through the plugin-compiler.xml file: otherwise the Mojo either will throw a MojoExecutionException telling you that the platform is not supported (occurs if entry is not in plugin-compilers.xml, regardless of whether the compiler/language is installed) or will attempt to execute the compiler and fail (occurs if entry is in plugin-compilers.xml and the compiler/language is not installed).</td>
+        </tr>
+        <tr class="b">
+          <td>
+            <a href="initialize-mojo.html">
+              <code>compile:initialize</code>
+            </a>
+          </td>
+          <td>This class initializes and validates the setup.</td>
+        </tr>
+        <tr class="a">
+          <td>
+            <a href="process-sources-mojo.html">
+              <code>compile:process-sources</code>
+            </a>
+          </td>
+          <td>Copies source files to target directory.</td>
+        </tr>
+        <tr class="b">
+          <td>
+            <a href="testCompile-mojo.html">
+              <code>compile:testCompile</code>
+            </a>
+          </td>
+          <td>Compiles test classes.</td>
+        </tr>
+        <tr class="a">
+          <td>
+            <a href="process-test-sources-mojo.html">
+              <code>compile:process-test-sources</code>
+            </a>
+          </td>
+          <td>Copies source files to target directory.</td>
+        </tr>
+      </table>
+    </div>
+  
+
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2007
+    
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Added: incubator/nmaven/www/plugins/maven-compile-plugin/initialize-mojo.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/initialize-mojo.html?view=auto&rev=503893
==============================================================================
--- incubator/nmaven/www/plugins/maven-compile-plugin/initialize-mojo.html (added)
+++ incubator/nmaven/www/plugins/maven-compile-plugin/initialize-mojo.html Mon Feb  5 14:01:37 2007
@@ -0,0 +1,255 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>NMaven - 
+    maven-compile-plugin - compile:initialize</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            maven-compile-plugin
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/05/2007
+                      </div>
+            <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
+          |
+          <a href="http://incubator.apache.org/nmaven">NMaven</a>
+          |
+          <a href="http://svn.apache.org/repos/asf/incubator/nmaven/">NMaven SVN</a>
+          |
+          <a href="http://maven.apache.org/">Maven</a>
+          |
+          <a href="http://www.mono-project.com/">Mono Project</a>
+          |
+          <a href="http://dotgnu.org/">DotGNU</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+                   <h5>General Info</h5>
+        <ul>
+              
+    <li class="none">
+              <a href="index.html">About</a>
+        </li>
+              
+    <li class="none">
+              <a href="how-to-use.html">How to Use</a>
+        </li>
+          </ul>
+          <h5>Project Documentation</h5>
+        <ul>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+        <li class="collapsed">
+              <a href="project-info.html">Project Information</a>
+              </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        
+  
+  
+    <a name="compile:initialize"></a><div class="section"><h2>compile:initialize</h2>
+      <p>This class initializes and validates the setup.</p>
+      <p>Parameters for the goal: </p>
+      <table class="bodyTable">
+        <tr class="a">
+          <th>Parameter</th>
+          <th>Type</th>
+          <th>Expression</th>
+          <th>Default Value</th>
+          <th>Description</th>
+        </tr>
+        <tr class="b">
+          <td>
+            <code>assemblyResolver</code> <i>(Optional)</i> <i>(Discovered)</i></td>
+          <td>
+            <code title="org.apache.maven.dotnet.artifact.AssemblyResolver">AssemblyResolver</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>No description.</td>
+        </tr>
+        <tr class="a">
+          <td>
+            <code>capabilityMatcher</code> <i>(Optional)</i> <i>(Discovered)</i></td>
+          <td>
+            <code title="org.apache.maven.dotnet.executable.CapabilityMatcher">CapabilityMatcher</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>No description.</td>
+        </tr>
+        <tr class="b">
+          <td>
+            <code>localRepository</code>
+          </td>
+          <td>
+            <code title="java.lang.String">String</code>
+          </td>
+          <td>
+            <code>${settings.localRepository}</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>No description.</td>
+        </tr>
+        <tr class="a">
+          <td>
+            <code>nmavenRegistry</code> <i>(Optional)</i> <i>(Discovered)</i></td>
+          <td>
+            <code title="org.apache.maven.dotnet.NMavenRepositoryRegistry">NMavenRepositoryRegistry</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>No description.</td>
+        </tr>
+        <tr class="b">
+          <td>
+            <code>pomFile</code>
+          </td>
+          <td>
+            <code title="java.io.File">File</code>
+          </td>
+          <td>
+            <code>${project.file}</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>No description.</td>
+        </tr>
+        <tr class="a">
+          <td>
+            <code>project</code>
+          </td>
+          <td>
+            <code title="org.apache.maven.project.MavenProject">MavenProject</code>
+          </td>
+          <td>
+            <code>${project}</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>The maven project.</td>
+        </tr>
+      </table>
+    </div>
+  
+
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2007
+    
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Added: incubator/nmaven/www/plugins/maven-compile-plugin/integration.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/integration.html?view=auto&rev=503893
==============================================================================
--- incubator/nmaven/www/plugins/maven-compile-plugin/integration.html (added)
+++ incubator/nmaven/www/plugins/maven-compile-plugin/integration.html Mon Feb  5 14:01:37 2007
@@ -0,0 +1,184 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>NMaven - Continuous Integration</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            maven-compile-plugin
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/05/2007
+                      </div>
+            <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
+          |
+          <a href="http://incubator.apache.org/nmaven">NMaven</a>
+          |
+          <a href="http://svn.apache.org/repos/asf/incubator/nmaven/">NMaven SVN</a>
+          |
+          <a href="http://maven.apache.org/">Maven</a>
+          |
+          <a href="http://www.mono-project.com/">Mono Project</a>
+          |
+          <a href="http://dotgnu.org/">DotGNU</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+                   <h5>General Info</h5>
+        <ul>
+              
+    <li class="none">
+              <a href="index.html">About</a>
+        </li>
+              
+    <li class="none">
+              <a href="how-to-use.html">How to Use</a>
+        </li>
+          </ul>
+          <h5>Project Documentation</h5>
+        <ul>
+              
+                
+              
+            
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+            <li class="expanded">
+              <a href="project-info.html">Project Information</a>
+                <ul>
+                  
+    <li class="none">
+              <strong>Continuous Integration</strong>
+        </li>
+                  
+    <li class="none">
+              <a href="dependencies.html">Dependencies</a>
+        </li>
+                  
+    <li class="none">
+              <a href="issue-tracking.html">Issue Tracking</a>
+        </li>
+                  
+    <li class="none">
+              <a href="mail-lists.html">Mailing Lists</a>
+        </li>
+                  
+    <li class="none">
+              <a href="license.html">Project License</a>
+        </li>
+                  
+    <li class="none">
+              <a href="project-summary.html">Project Summary</a>
+        </li>
+                  
+    <li class="none">
+              <a href="team-list.html">Project Team</a>
+        </li>
+                  
+    <li class="none">
+              <a href="source-repository.html">Source Repository</a>
+        </li>
+              </ul>
+        </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>Continuous Integration</h2><p>No continuous integration management system is defined. Please check back at a later date.</p></div>
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2007
+    
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Propchange: incubator/nmaven/www/plugins/maven-compile-plugin/integration.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/nmaven/www/plugins/maven-compile-plugin/issue-tracking.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/issue-tracking.html?view=auto&rev=503893
==============================================================================
--- incubator/nmaven/www/plugins/maven-compile-plugin/issue-tracking.html (added)
+++ incubator/nmaven/www/plugins/maven-compile-plugin/issue-tracking.html Mon Feb  5 14:01:37 2007
@@ -0,0 +1,184 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>NMaven - Issue Tracking</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            maven-compile-plugin
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/05/2007
+                      </div>
+            <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
+          |
+          <a href="http://incubator.apache.org/nmaven">NMaven</a>
+          |
+          <a href="http://svn.apache.org/repos/asf/incubator/nmaven/">NMaven SVN</a>
+          |
+          <a href="http://maven.apache.org/">Maven</a>
+          |
+          <a href="http://www.mono-project.com/">Mono Project</a>
+          |
+          <a href="http://dotgnu.org/">DotGNU</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+                   <h5>General Info</h5>
+        <ul>
+              
+    <li class="none">
+              <a href="index.html">About</a>
+        </li>
+              
+    <li class="none">
+              <a href="how-to-use.html">How to Use</a>
+        </li>
+          </ul>
+          <h5>Project Documentation</h5>
+        <ul>
+              
+                
+              
+      
+            
+      
+            
+            
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+            <li class="expanded">
+              <a href="project-info.html">Project Information</a>
+                <ul>
+                  
+    <li class="none">
+              <a href="integration.html">Continuous Integration</a>
+        </li>
+                  
+    <li class="none">
+              <a href="dependencies.html">Dependencies</a>
+        </li>
+                  
+    <li class="none">
+              <strong>Issue Tracking</strong>
+        </li>
+                  
+    <li class="none">
+              <a href="mail-lists.html">Mailing Lists</a>
+        </li>
+                  
+    <li class="none">
+              <a href="license.html">Project License</a>
+        </li>
+                  
+    <li class="none">
+              <a href="project-summary.html">Project Summary</a>
+        </li>
+                  
+    <li class="none">
+              <a href="team-list.html">Project Team</a>
+        </li>
+                  
+    <li class="none">
+              <a href="source-repository.html">Source Repository</a>
+        </li>
+              </ul>
+        </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>Issue Tracking</h2><p>No issue management system is defined. Please check back at a later date.</p></div>
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2007
+    
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Propchange: incubator/nmaven/www/plugins/maven-compile-plugin/issue-tracking.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/nmaven/www/plugins/maven-compile-plugin/license.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/license.html?view=auto&rev=503893
==============================================================================
--- incubator/nmaven/www/plugins/maven-compile-plugin/license.html (added)
+++ incubator/nmaven/www/plugins/maven-compile-plugin/license.html Mon Feb  5 14:01:37 2007
@@ -0,0 +1,184 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>NMaven - Project License</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            maven-compile-plugin
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/05/2007
+                      </div>
+            <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
+          |
+          <a href="http://incubator.apache.org/nmaven">NMaven</a>
+          |
+          <a href="http://svn.apache.org/repos/asf/incubator/nmaven/">NMaven SVN</a>
+          |
+          <a href="http://maven.apache.org/">Maven</a>
+          |
+          <a href="http://www.mono-project.com/">Mono Project</a>
+          |
+          <a href="http://dotgnu.org/">DotGNU</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+                   <h5>General Info</h5>
+        <ul>
+              
+    <li class="none">
+              <a href="index.html">About</a>
+        </li>
+              
+    <li class="none">
+              <a href="how-to-use.html">How to Use</a>
+        </li>
+          </ul>
+          <h5>Project Documentation</h5>
+        <ul>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+            
+            
+      
+            
+      
+            
+      
+              
+            <li class="expanded">
+              <a href="project-info.html">Project Information</a>
+                <ul>
+                  
+    <li class="none">
+              <a href="integration.html">Continuous Integration</a>
+        </li>
+                  
+    <li class="none">
+              <a href="dependencies.html">Dependencies</a>
+        </li>
+                  
+    <li class="none">
+              <a href="issue-tracking.html">Issue Tracking</a>
+        </li>
+                  
+    <li class="none">
+              <a href="mail-lists.html">Mailing Lists</a>
+        </li>
+                  
+    <li class="none">
+              <strong>Project License</strong>
+        </li>
+                  
+    <li class="none">
+              <a href="project-summary.html">Project Summary</a>
+        </li>
+                  
+    <li class="none">
+              <a href="team-list.html">Project Team</a>
+        </li>
+                  
+    <li class="none">
+              <a href="source-repository.html">Source Repository</a>
+        </li>
+              </ul>
+        </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>Project License</h2><p>No project license is defined for this project.</p></div>
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2007
+    
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Propchange: incubator/nmaven/www/plugins/maven-compile-plugin/license.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/nmaven/www/plugins/maven-compile-plugin/mail-lists.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/mail-lists.html?view=auto&rev=503893
==============================================================================
--- incubator/nmaven/www/plugins/maven-compile-plugin/mail-lists.html (added)
+++ incubator/nmaven/www/plugins/maven-compile-plugin/mail-lists.html Mon Feb  5 14:01:37 2007
@@ -0,0 +1,184 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>NMaven - Project Mailing Lists</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            maven-compile-plugin
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/05/2007
+                      </div>
+            <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
+          |
+          <a href="http://incubator.apache.org/nmaven">NMaven</a>
+          |
+          <a href="http://svn.apache.org/repos/asf/incubator/nmaven/">NMaven SVN</a>
+          |
+          <a href="http://maven.apache.org/">Maven</a>
+          |
+          <a href="http://www.mono-project.com/">Mono Project</a>
+          |
+          <a href="http://dotgnu.org/">DotGNU</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+                   <h5>General Info</h5>
+        <ul>
+              
+    <li class="none">
+              <a href="index.html">About</a>
+        </li>
+              
+    <li class="none">
+              <a href="how-to-use.html">How to Use</a>
+        </li>
+          </ul>
+          <h5>Project Documentation</h5>
+        <ul>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+            
+            
+      
+            
+      
+            
+      
+            
+      
+              
+            <li class="expanded">
+              <a href="project-info.html">Project Information</a>
+                <ul>
+                  
+    <li class="none">
+              <a href="integration.html">Continuous Integration</a>
+        </li>
+                  
+    <li class="none">
+              <a href="dependencies.html">Dependencies</a>
+        </li>
+                  
+    <li class="none">
+              <a href="issue-tracking.html">Issue Tracking</a>
+        </li>
+                  
+    <li class="none">
+              <strong>Mailing Lists</strong>
+        </li>
+                  
+    <li class="none">
+              <a href="license.html">Project License</a>
+        </li>
+                  
+    <li class="none">
+              <a href="project-summary.html">Project Summary</a>
+        </li>
+                  
+    <li class="none">
+              <a href="team-list.html">Project Team</a>
+        </li>
+                  
+    <li class="none">
+              <a href="source-repository.html">Source Repository</a>
+        </li>
+              </ul>
+        </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>Project Mailing Lists</h2><p>There are no mailing lists currently associated with this project.</p></div>
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2007
+    
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Propchange: incubator/nmaven/www/plugins/maven-compile-plugin/mail-lists.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/nmaven/www/plugins/maven-compile-plugin/process-sources-mojo.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/process-sources-mojo.html?view=auto&rev=503893
==============================================================================
--- incubator/nmaven/www/plugins/maven-compile-plugin/process-sources-mojo.html (added)
+++ incubator/nmaven/www/plugins/maven-compile-plugin/process-sources-mojo.html Mon Feb  5 14:01:37 2007
@@ -0,0 +1,226 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>NMaven - 
+    maven-compile-plugin - compile:process-sources</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            maven-compile-plugin
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/05/2007
+                      </div>
+            <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
+          |
+          <a href="http://incubator.apache.org/nmaven">NMaven</a>
+          |
+          <a href="http://svn.apache.org/repos/asf/incubator/nmaven/">NMaven SVN</a>
+          |
+          <a href="http://maven.apache.org/">Maven</a>
+          |
+          <a href="http://www.mono-project.com/">Mono Project</a>
+          |
+          <a href="http://dotgnu.org/">DotGNU</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+                   <h5>General Info</h5>
+        <ul>
+              
+    <li class="none">
+              <a href="index.html">About</a>
+        </li>
+              
+    <li class="none">
+              <a href="how-to-use.html">How to Use</a>
+        </li>
+          </ul>
+          <h5>Project Documentation</h5>
+        <ul>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+        <li class="collapsed">
+              <a href="project-info.html">Project Information</a>
+              </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        
+  
+  
+    <a name="compile:process-sources"></a><div class="section"><h2>compile:process-sources</h2>
+      <p>Copies source files to target directory.</p>
+      <p>Parameters for the goal: </p>
+      <table class="bodyTable">
+        <tr class="a">
+          <th>Parameter</th>
+          <th>Type</th>
+          <th>Expression</th>
+          <th>Default Value</th>
+          <th>Description</th>
+        </tr>
+        <tr class="b">
+          <td>
+            <code>excludes</code> <i>(Optional)</i></td>
+          <td>
+            <code title="java.lang.String">String</code>
+          </td>
+          <td>
+            <code>${excludes}</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>No description.</td>
+        </tr>
+        <tr class="a">
+          <td>
+            <code>includes</code> <i>(Optional)</i></td>
+          <td>
+            <code title="java.lang.String">String</code>
+          </td>
+          <td>
+            <code>${includes}</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>No description.</td>
+        </tr>
+        <tr class="b">
+          <td>
+            <code>outputDirectory</code>
+          </td>
+          <td>
+            <code title="java.lang.String">String</code>
+          </td>
+          <td>
+            <code>${outputDirectory}</code>
+          </td>
+          <td>
+            <code>${project.build.directory}${file.separator}build-sources</code>
+          </td>
+          <td>Output directory</td>
+        </tr>
+        <tr class="a">
+          <td>
+            <code>sourceDirectory</code>
+          </td>
+          <td>
+            <code title="java.lang.String">String</code>
+          </td>
+          <td>
+            <code>${sourceDirectory}</code>
+          </td>
+          <td>
+            <code>${project.build.sourceDirectory}</code>
+          </td>
+          <td>Source directory</td>
+        </tr>
+      </table>
+    </div>
+  
+
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2007
+    
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Added: incubator/nmaven/www/plugins/maven-compile-plugin/process-test-sources-mojo.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/process-test-sources-mojo.html?view=auto&rev=503893
==============================================================================
--- incubator/nmaven/www/plugins/maven-compile-plugin/process-test-sources-mojo.html (added)
+++ incubator/nmaven/www/plugins/maven-compile-plugin/process-test-sources-mojo.html Mon Feb  5 14:01:37 2007
@@ -0,0 +1,198 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>NMaven - 
+    maven-compile-plugin - compile:process-test-sources</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            maven-compile-plugin
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/05/2007
+                      </div>
+            <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
+          |
+          <a href="http://incubator.apache.org/nmaven">NMaven</a>
+          |
+          <a href="http://svn.apache.org/repos/asf/incubator/nmaven/">NMaven SVN</a>
+          |
+          <a href="http://maven.apache.org/">Maven</a>
+          |
+          <a href="http://www.mono-project.com/">Mono Project</a>
+          |
+          <a href="http://dotgnu.org/">DotGNU</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+                   <h5>General Info</h5>
+        <ul>
+              
+    <li class="none">
+              <a href="index.html">About</a>
+        </li>
+              
+    <li class="none">
+              <a href="how-to-use.html">How to Use</a>
+        </li>
+          </ul>
+          <h5>Project Documentation</h5>
+        <ul>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+        <li class="collapsed">
+              <a href="project-info.html">Project Information</a>
+              </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        
+  
+  
+    <a name="compile:process-test-sources"></a><div class="section"><h2>compile:process-test-sources</h2>
+      <p>Copies source files to target directory.</p>
+      <p>Parameters for the goal: </p>
+      <table class="bodyTable">
+        <tr class="a">
+          <th>Parameter</th>
+          <th>Type</th>
+          <th>Expression</th>
+          <th>Default Value</th>
+          <th>Description</th>
+        </tr>
+        <tr class="b">
+          <td>
+            <code>outputDirectory</code>
+          </td>
+          <td>
+            <code title="java.lang.String">String</code>
+          </td>
+          <td>
+            <code>${outputDirectory}</code>
+          </td>
+          <td>
+            <code>${project.build.directory}${file.separator}build-test-sources</code>
+          </td>
+          <td>Output directory</td>
+        </tr>
+        <tr class="a">
+          <td>
+            <code>sourceDirectory</code>
+          </td>
+          <td>
+            <code title="java.lang.String">String</code>
+          </td>
+          <td>
+            <code>${sourceDirectory}</code>
+          </td>
+          <td>
+            <code>${project.build.testSourceDirectory}</code>
+          </td>
+          <td>Source directory</td>
+        </tr>
+      </table>
+    </div>
+  
+
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2007
+    
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Added: incubator/nmaven/www/plugins/maven-compile-plugin/project-info.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/project-info.html?view=auto&rev=503893
==============================================================================
--- incubator/nmaven/www/plugins/maven-compile-plugin/project-info.html (added)
+++ incubator/nmaven/www/plugins/maven-compile-plugin/project-info.html Mon Feb  5 14:01:37 2007
@@ -0,0 +1,184 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>NMaven - Project Information</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            maven-compile-plugin
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/05/2007
+                      </div>
+            <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
+          |
+          <a href="http://incubator.apache.org/nmaven">NMaven</a>
+          |
+          <a href="http://svn.apache.org/repos/asf/incubator/nmaven/">NMaven SVN</a>
+          |
+          <a href="http://maven.apache.org/">Maven</a>
+          |
+          <a href="http://www.mono-project.com/">Mono Project</a>
+          |
+          <a href="http://dotgnu.org/">DotGNU</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+                   <h5>General Info</h5>
+        <ul>
+              
+    <li class="none">
+              <a href="index.html">About</a>
+        </li>
+              
+    <li class="none">
+              <a href="how-to-use.html">How to Use</a>
+        </li>
+          </ul>
+          <h5>Project Documentation</h5>
+        <ul>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+            <li class="expanded">
+              <strong>Project Information</strong>
+                <ul>
+                  
+    <li class="none">
+              <a href="integration.html">Continuous Integration</a>
+        </li>
+                  
+    <li class="none">
+              <a href="dependencies.html">Dependencies</a>
+        </li>
+                  
+    <li class="none">
+              <a href="issue-tracking.html">Issue Tracking</a>
+        </li>
+                  
+    <li class="none">
+              <a href="mail-lists.html">Mailing Lists</a>
+        </li>
+                  
+    <li class="none">
+              <a href="license.html">Project License</a>
+        </li>
+                  
+    <li class="none">
+              <a href="project-summary.html">Project Summary</a>
+        </li>
+                  
+    <li class="none">
+              <a href="team-list.html">Project Team</a>
+        </li>
+                  
+    <li class="none">
+              <a href="source-repository.html">Source Repository</a>
+        </li>
+              </ul>
+        </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>Project Information</h2><p>This document provides an overview of the various documents and links that are part of this project's general information. All of this content is automatically generated by <a href="http://maven.apache.org">Maven</a> on behalf of the project.</p><div class="section"><h3>Overview</h3><table class="bodyTable"><tr class="a"><th>Document</th><th>Description</th></tr><tr class="b"><td><a href="integration.html">Continuous Integration</a></td><td>This is a link to the definitions of all continuous integration processes that builds and tests code on a frequent, regular basis.</td></tr><tr class="a"><td><a href="dependencies.html">Dependencies</a></td><td>This document lists the projects dependencies and provides information on each dependency.</td></tr><tr class="b"><td><a href="issue-tracking.html">Issue Tracking</a></td><td>This is a link to the issue management system for this project. Issues (bugs, features, change req
 uests) can be created and queried using this link.</td></tr><tr class="a"><td><a href="mail-lists.html">Mailing Lists</a></td><td>This document provides subscription and archive information for this project's mailing lists.</td></tr><tr class="b"><td><a href="license.html">Project License</a></td><td>This is a link to the definitions of project licenses.</td></tr><tr class="a"><td><a href="project-summary.html">Project Summary</a></td><td>This document lists other related information of this project</td></tr><tr class="b"><td><a href="team-list.html">Project Team</a></td><td>This document provides information on the members of this project. These are the individuals who have contributed to the project in one form or another.</td></tr><tr class="a"><td><a href="source-repository.html">Source Repository</a></td><td>This is a link to the online source repository that can be viewed via a web browser.</td></tr></table></div></div>
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2007
+    
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Propchange: incubator/nmaven/www/plugins/maven-compile-plugin/project-info.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/nmaven/www/plugins/maven-compile-plugin/project-summary.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/project-summary.html?view=auto&rev=503893
==============================================================================
--- incubator/nmaven/www/plugins/maven-compile-plugin/project-summary.html (added)
+++ incubator/nmaven/www/plugins/maven-compile-plugin/project-summary.html Mon Feb  5 14:01:37 2007
@@ -0,0 +1,184 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>NMaven - Project Summary</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            maven-compile-plugin
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/05/2007
+                      </div>
+            <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
+          |
+          <a href="http://incubator.apache.org/nmaven">NMaven</a>
+          |
+          <a href="http://svn.apache.org/repos/asf/incubator/nmaven/">NMaven SVN</a>
+          |
+          <a href="http://maven.apache.org/">Maven</a>
+          |
+          <a href="http://www.mono-project.com/">Mono Project</a>
+          |
+          <a href="http://dotgnu.org/">DotGNU</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+                   <h5>General Info</h5>
+        <ul>
+              
+    <li class="none">
+              <a href="index.html">About</a>
+        </li>
+              
+    <li class="none">
+              <a href="how-to-use.html">How to Use</a>
+        </li>
+          </ul>
+          <h5>Project Documentation</h5>
+        <ul>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+            
+            
+      
+            
+      
+              
+            <li class="expanded">
+              <a href="project-info.html">Project Information</a>
+                <ul>
+                  
+    <li class="none">
+              <a href="integration.html">Continuous Integration</a>
+        </li>
+                  
+    <li class="none">
+              <a href="dependencies.html">Dependencies</a>
+        </li>
+                  
+    <li class="none">
+              <a href="issue-tracking.html">Issue Tracking</a>
+        </li>
+                  
+    <li class="none">
+              <a href="mail-lists.html">Mailing Lists</a>
+        </li>
+                  
+    <li class="none">
+              <a href="license.html">Project License</a>
+        </li>
+                  
+    <li class="none">
+              <strong>Project Summary</strong>
+        </li>
+                  
+    <li class="none">
+              <a href="team-list.html">Project Team</a>
+        </li>
+                  
+    <li class="none">
+              <a href="source-repository.html">Source Repository</a>
+        </li>
+              </ul>
+        </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>Project Summary</h2><div class="section"><h3>Project Information</h3><table class="bodyTable"><tr class="a"><th>Field</th><th>Value</th></tr><tr class="b"><td>Name</td><td>maven-compile-plugin</td></tr><tr class="a"><td>Description</td><td>Maven Plugin for .NET</td></tr><tr class="b"><td>Homepage</td><td></td></tr></table></div><div class="section"><h3>Project Organization</h3><p>This project does not belong to an organization.</p></div><div class="section"><h3>Build Information</h3><table class="bodyTable"><tr class="a"><th>Field</th><th>Value</th></tr><tr class="b"><td>GroupId</td><td>org.apache.maven.dotnet.plugins</td></tr><tr class="a"><td>ArtifactId</td><td>maven-compile-plugin</td></tr><tr class="b"><td>Version</td><td>0.14-SNAPSHOT</td></tr><tr class="a"><td>Type</td><td>maven-plugin</td></tr></table></div></div>
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2007
+    
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Propchange: incubator/nmaven/www/plugins/maven-compile-plugin/project-summary.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/nmaven/www/plugins/maven-compile-plugin/source-repository.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/source-repository.html?view=auto&rev=503893
==============================================================================
--- incubator/nmaven/www/plugins/maven-compile-plugin/source-repository.html (added)
+++ incubator/nmaven/www/plugins/maven-compile-plugin/source-repository.html Mon Feb  5 14:01:37 2007
@@ -0,0 +1,184 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>NMaven - Source Repository</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            maven-compile-plugin
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/05/2007
+                      </div>
+            <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
+          |
+          <a href="http://incubator.apache.org/nmaven">NMaven</a>
+          |
+          <a href="http://svn.apache.org/repos/asf/incubator/nmaven/">NMaven SVN</a>
+          |
+          <a href="http://maven.apache.org/">Maven</a>
+          |
+          <a href="http://www.mono-project.com/">Mono Project</a>
+          |
+          <a href="http://dotgnu.org/">DotGNU</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+                   <h5>General Info</h5>
+        <ul>
+              
+    <li class="none">
+              <a href="index.html">About</a>
+        </li>
+              
+    <li class="none">
+              <a href="how-to-use.html">How to Use</a>
+        </li>
+          </ul>
+          <h5>Project Documentation</h5>
+        <ul>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+            
+              
+            <li class="expanded">
+              <a href="project-info.html">Project Information</a>
+                <ul>
+                  
+    <li class="none">
+              <a href="integration.html">Continuous Integration</a>
+        </li>
+                  
+    <li class="none">
+              <a href="dependencies.html">Dependencies</a>
+        </li>
+                  
+    <li class="none">
+              <a href="issue-tracking.html">Issue Tracking</a>
+        </li>
+                  
+    <li class="none">
+              <a href="mail-lists.html">Mailing Lists</a>
+        </li>
+                  
+    <li class="none">
+              <a href="license.html">Project License</a>
+        </li>
+                  
+    <li class="none">
+              <a href="project-summary.html">Project Summary</a>
+        </li>
+                  
+    <li class="none">
+              <a href="team-list.html">Project Team</a>
+        </li>
+                  
+    <li class="none">
+              <strong>Source Repository</strong>
+        </li>
+              </ul>
+        </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>Source Repository</h2><p>No source configuration management system is defined. Please check back at a later date.</p></div>
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2007
+    
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Propchange: incubator/nmaven/www/plugins/maven-compile-plugin/source-repository.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/nmaven/www/plugins/maven-compile-plugin/team-list.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/team-list.html?view=auto&rev=503893
==============================================================================
--- incubator/nmaven/www/plugins/maven-compile-plugin/team-list.html (added)
+++ incubator/nmaven/www/plugins/maven-compile-plugin/team-list.html Mon Feb  5 14:01:37 2007
@@ -0,0 +1,199 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>NMaven - Team list</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            maven-compile-plugin
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/05/2007
+                      </div>
+            <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
+          |
+          <a href="http://incubator.apache.org/nmaven">NMaven</a>
+          |
+          <a href="http://svn.apache.org/repos/asf/incubator/nmaven/">NMaven SVN</a>
+          |
+          <a href="http://maven.apache.org/">Maven</a>
+          |
+          <a href="http://www.mono-project.com/">Mono Project</a>
+          |
+          <a href="http://dotgnu.org/">DotGNU</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+                   <h5>General Info</h5>
+        <ul>
+              
+    <li class="none">
+              <a href="index.html">About</a>
+        </li>
+              
+    <li class="none">
+              <a href="how-to-use.html">How to Use</a>
+        </li>
+          </ul>
+          <h5>Project Documentation</h5>
+        <ul>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+            
+            
+      
+              
+            <li class="expanded">
+              <a href="project-info.html">Project Information</a>
+                <ul>
+                  
+    <li class="none">
+              <a href="integration.html">Continuous Integration</a>
+        </li>
+                  
+    <li class="none">
+              <a href="dependencies.html">Dependencies</a>
+        </li>
+                  
+    <li class="none">
+              <a href="issue-tracking.html">Issue Tracking</a>
+        </li>
+                  
+    <li class="none">
+              <a href="mail-lists.html">Mailing Lists</a>
+        </li>
+                  
+    <li class="none">
+              <a href="license.html">Project License</a>
+        </li>
+                  
+    <li class="none">
+              <a href="project-summary.html">Project Summary</a>
+        </li>
+                  
+    <li class="none">
+              <strong>Project Team</strong>
+        </li>
+                  
+    <li class="none">
+              <a href="source-repository.html">Source Repository</a>
+        </li>
+              </ul>
+        </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>The Team</h2><p>A successful project requires many people to play many roles. Some members write code or documentation, while others are valuable as testers, submitting patches and suggestions.</p><p>The team is comprised of Members and Contributors. Members have direct access to the source of a project and actively evolve the code-base. Contributors improve the project through submission of patches and suggestions to the Members. The number of Contributors to the project is unbounded. Get involved today. All contributions to the project are greatly appreciated.</p><div class="section"><h3>Members</h3><p>There are no developers working on this project.</p></div><div class="section"><h3>Contributors</h3><p>There are no contributors listed for this project. Please check back again later.</p></div></div><script type="text/javascript">
+function offsetDate(id, offset) {
+    var now = new Date();
+    var nowTime = now.getTime();
+    var localOffset = now.getTimezoneOffset();
+    var developerTime = nowTime + ( offset * 60 * 60 * 1000 ) + ( localOffset * 60 * 1000 );
+    var developerDate = new Date(developerTime);
+
+    document.getElementById(id).innerHTML = developerDate;
+}
+
+function init(){
+}
+
+window.onLoad = init();
+</script>
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2007
+    
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Added: incubator/nmaven/www/plugins/maven-compile-plugin/testCompile-mojo.html
URL: http://svn.apache.org/viewvc/incubator/nmaven/www/plugins/maven-compile-plugin/testCompile-mojo.html?view=auto&rev=503893
==============================================================================
--- incubator/nmaven/www/plugins/maven-compile-plugin/testCompile-mojo.html (added)
+++ incubator/nmaven/www/plugins/maven-compile-plugin/testCompile-mojo.html Mon Feb  5 14:01:37 2007
@@ -0,0 +1,339 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>NMaven - 
+    maven-compile-plugin - compile:testCompile</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            maven-compile-plugin
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/05/2007
+                      </div>
+            <div class="xright">      <a href="http://incubator.apache.org/projects/nmaven.html">Project Site</a>
+          |
+          <a href="http://incubator.apache.org/nmaven">NMaven</a>
+          |
+          <a href="http://svn.apache.org/repos/asf/incubator/nmaven/">NMaven SVN</a>
+          |
+          <a href="http://maven.apache.org/">Maven</a>
+          |
+          <a href="http://www.mono-project.com/">Mono Project</a>
+          |
+          <a href="http://dotgnu.org/">DotGNU</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+                   <h5>General Info</h5>
+        <ul>
+              
+    <li class="none">
+              <a href="index.html">About</a>
+        </li>
+              
+    <li class="none">
+              <a href="how-to-use.html">How to Use</a>
+        </li>
+          </ul>
+          <h5>Project Documentation</h5>
+        <ul>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+        <li class="collapsed">
+              <a href="project-info.html">Project Information</a>
+              </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        
+  
+  
+    <a name="compile:testCompile"></a><div class="section"><h2>compile:testCompile</h2>
+      <p>Compiles test classes.</p>
+      <p>Parameters for the goal: </p>
+      <table class="bodyTable">
+        <tr class="a">
+          <th>Parameter</th>
+          <th>Type</th>
+          <th>Expression</th>
+          <th>Default Value</th>
+          <th>Description</th>
+        </tr>
+        <tr class="b">
+          <td>
+            <code>frameworkVersion</code> <i>(Optional)</i></td>
+          <td>
+            <code title="java.lang.String">String</code>
+          </td>
+          <td>
+            <code>${frameworkVersion}</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>No description.</td>
+        </tr>
+        <tr class="a">
+          <td>
+            <code>language</code>
+          </td>
+          <td>
+            <code title="java.lang.String">String</code>
+          </td>
+          <td>
+            <code>${language}</code>
+          </td>
+          <td>
+            <code>C_SHARP</code>
+          </td>
+          <td>.NET Language. The default value is <code>C_SHARP</code>. Not case or white-space sensitive.</td>
+        </tr>
+        <tr class="b">
+          <td>
+            <code>localRepository</code>
+          </td>
+          <td>
+            <code title="java.io.File">File</code>
+          </td>
+          <td>
+            <code>${settings.localRepository}</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>No description.</td>
+        </tr>
+        <tr class="a">
+          <td>
+            <code>netExecutableFactory</code> <i>(Optional)</i> <i>(Discovered)</i></td>
+          <td>
+            <code title="org.apache.maven.dotnet.executable.NetExecutableFactory">NetExecutableFactory</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>No description.</td>
+        </tr>
+        <tr class="b">
+          <td>
+            <code>project</code>
+          </td>
+          <td>
+            <code title="org.apache.maven.project.MavenProject">MavenProject</code>
+          </td>
+          <td>
+            <code>${project}</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>The maven project.</td>
+        </tr>
+        <tr class="a">
+          <td>
+            <code>skipTestCompile</code> <i>(Optional)</i></td>
+          <td>
+            <code title="boolean">boolean</code>
+          </td>
+          <td>
+            <code>${skipTestCompile}</code>
+          </td>
+          <td>
+            <code>false</code>
+          </td>
+          <td>Skips compiling of unit tests</td>
+        </tr>
+        <tr class="b">
+          <td>
+            <code>testFrameworkVersion</code> <i>(Optional)</i></td>
+          <td>
+            <code title="java.lang.String">String</code>
+          </td>
+          <td>
+            <code>${testFrameworkVersion}</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>No description.</td>
+        </tr>
+        <tr class="a">
+          <td>
+            <code>testLanguage</code> <i>(Optional)</i></td>
+          <td>
+            <code title="java.lang.String">String</code>
+          </td>
+          <td>
+            <code>${language}</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>.NET Language. The default value is <code>C_SHARP</code>. Not case or white-space sensitive.</td>
+        </tr>
+        <tr class="b">
+          <td>
+            <code>testParameters</code> <i>(Optional)</i></td>
+          <td>
+            <code title="java.util.ArrayList">ArrayList</code>
+          </td>
+          <td>
+            <code>${testParameters}</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>Additional compiler commands for test classes</td>
+        </tr>
+        <tr class="a">
+          <td>
+            <code>testVendor</code> <i>(Optional)</i></td>
+          <td>
+            <code title="java.lang.String">String</code>
+          </td>
+          <td>
+            <code>${testVendor}</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>The Vendor for the Compiler. Supports MONO and MICROSOFT: the default value is <code>MICROSOFT</code>. Not case or white-space sensitive.</td>
+        </tr>
+        <tr class="b">
+          <td>
+            <code>testVendorVersion</code> <i>(Optional)</i></td>
+          <td>
+            <code title="java.lang.String">String</code>
+          </td>
+          <td>
+            <code>${testVendorVersion}</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>No description.</td>
+        </tr>
+        <tr class="a">
+          <td>
+            <code>vendor</code> <i>(Optional)</i></td>
+          <td>
+            <code title="java.lang.String">String</code>
+          </td>
+          <td>
+            <code>${vendor}</code>
+          </td>
+          <td>
+            <code>-</code>
+          </td>
+          <td>The Vendor for the Compiler. Supports MONO and MICROSOFT: the default value is <code>MICROSOFT</code>. Not case or white-space sensitive.</td>
+        </tr>
+      </table>
+    </div>
+  
+
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2007
+    
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>