Added: incubator/nmaven/www/0.16/user-guide/dependencies.html URL: http://svn.apache.org/viewvc/incubator/nmaven/www/0.16/user-guide/dependencies.html?rev=699345&view=auto ============================================================================== --- incubator/nmaven/www/0.16/user-guide/dependencies.html (added) +++ incubator/nmaven/www/0.16/user-guide/dependencies.html Fri Sep 26 07:45:17 2008 @@ -0,0 +1,233 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + + + + + + + + + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>Apache NMaven - Dependencies</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" /> + +<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script> + +<script type="text/javascript">_uacct = "UA-140879-1"; + urchinTracker();</script> + </head> + <body class="composite"> + <div id="banner"> + <a href="http://maven.apache.org/" id="bannerLeft"> + + <img src="http://maven.apache.org/images/apache-maven-project-2.png" alt="" /> + + </a> + <span id="bannerRight"> + + <img src=".././images/apache-incubator-logo.png" alt="" /> + + </span> + <div class="clear"> + <hr/> + </div> + </div> + <div id="breadcrumbs"> + + + + + + + + + <div class="xleft"> + Last Published: 2008-09-27 + | Version: 0.16-incubating-SNAPSHOT + </div> + <div class="xright"> <a href="../../../../projects/nmaven.html">Incubator Status</a> + | + <a href="../../..">NMaven</a> + | + <a href="http://maven.apache.org/" class="externalLink">Maven</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 NMaven</a> + </li> + + <li class="none"> + <a href="../features.html">Features</a> + </li> + </ul> + <h5>Installation</h5> + <ul> + + <li class="none"> + <a href="../installation-guide/building.html">Building from Sources</a> + </li> + + <li class="none"> + <a href="../installation-guide/toolchains.html">Configuring Toolchains</a> + </li> + </ul> + <h5>User's Guide</h5> + <ul> + + <li class="none"> + <a href="../user-guide/creating-projects.html">Creating Projects</a> + </li> + + <li class="none"> + <a href="../user-guide/archetypes.html">Project Archetypes</a> + </li> + + <li class="none"> + <strong>Dependencies</strong> + </li> + + <li class="none"> + <a href="../user-guide/testing.html">Testing with NUnit</a> + </li> + + <li class="none"> + <a href="../user-guide/assemblies.html">Assemblies</a> + </li> + </ul> + <h5>Developer's Guide</h5> + <ul> + + <li class="none"> + <a href="../developer-guide/integration-tests.html">Integration Tests</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" class="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 Dependencies</h2> +<p>A typical dependency would look like the following:</p> +<div class="source"><pre><dependency> + <groupId>NMaven.Its</groupId> + <artifactId>NMaven.It.It0004</artifactId> + <version>1.0.0</version> + <type>dotnet:library</type> +</dependency></pre> +</div> +<p><tt>dotnet:winexe</tt> and <tt>dotnet:exe</tt> can also be used as dependency types. <tt>dotnet:module</tt> can also be used but will not be transitive.</p> +<div class="section"><h3>Dependencies in the Global Assembly Cache (GAC)</h3> +<p>To use a GAC dependency, you will need to set a <tt>GAC_ROOT</tt> environment variable to point to either the Microsoft or Mono GAC root location. Then use the system scope as shown below. You can also use types: <tt>dotnet:gac_32</tt> and <tt>dotnet:gac</tt>.</p> +<div class="source"><pre><dependency> + <groupId>System.Windows.Forms</groupId> + <artifactId>System.Windows.Forms</artifactId> + <version>2.0.0.0</version> + <type>dotnet:gac_msil</type> + <scope>system</scope> + <classifier>b77a5c561934e089</classifier> + <systemPath>${env.GAC_ROOT}\GAC_MSIL\System.Windows.Forms\2.0.0.0__b77a5c561934e089\System.Windows.Forms.dll</systemPath> +</dependency></pre> +</div> +</div> +</div> + + </div> + </div> + <div class="clear"> + <hr/> + </div> + <div id="footer"> + <div class="xright">© + 2006-2008 + + The Apache Software Foundation + + + + + + + + + </div> + <div class="clear"> + <hr/> + </div> + </div> + </body> +</html>
Added: incubator/nmaven/www/0.16/user-guide/directory-layout.html URL: http://svn.apache.org/viewvc/incubator/nmaven/www/0.16/user-guide/directory-layout.html?rev=699345&view=auto ============================================================================== --- incubator/nmaven/www/0.16/user-guide/directory-layout.html (added) +++ incubator/nmaven/www/0.16/user-guide/directory-layout.html Fri Sep 26 07:45:17 2008 @@ -0,0 +1,211 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + + + + + + + + + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>Apache NMaven - Directory Layout</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" /> + +<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script> + +<script type="text/javascript">_uacct = "UA-140879-1"; + urchinTracker();</script> + </head> + <body class="composite"> + <div id="banner"> + <a href="http://maven.apache.org/" id="bannerLeft"> + + <img src="http://maven.apache.org/images/apache-maven-project-2.png" alt="" /> + + </a> + <span id="bannerRight"> + + <img src=".././images/apache-incubator-logo.png" alt="" /> + + </span> + <div class="clear"> + <hr/> + </div> + </div> + <div id="breadcrumbs"> + + + + + + + + + <div class="xleft"> + Last Published: 2008-09-27 + | Version: 0.16-incubating-SNAPSHOT + </div> + <div class="xright"> <a href="../../../../projects/nmaven.html">Incubator Status</a> + | + <a href="../../..">NMaven</a> + | + <a href="http://maven.apache.org/" class="externalLink">Maven</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 NMaven</a> + </li> + + <li class="none"> + <a href="../features.html">Features</a> + </li> + </ul> + <h5>Installation</h5> + <ul> + + <li class="none"> + <a href="../installation-guide/building.html">Building from Sources</a> + </li> + + <li class="none"> + <a href="../installation-guide/toolchains.html">Configuring Toolchains</a> + </li> + </ul> + <h5>User's Guide</h5> + <ul> + + <li class="none"> + <a href="../user-guide/creating-projects.html">Creating Projects</a> + </li> + + <li class="none"> + <a href="../user-guide/archetypes.html">Project Archetypes</a> + </li> + + <li class="none"> + <a href="../user-guide/dependencies.html">Dependencies</a> + </li> + + <li class="none"> + <a href="../user-guide/testing.html">Testing with NUnit</a> + </li> + + <li class="none"> + <a href="../user-guide/assemblies.html">Assemblies</a> + </li> + </ul> + <h5>Developer's Guide</h5> + <ul> + + <li class="none"> + <a href="../developer-guide/integration-tests.html">Integration Tests</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" class="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>Directory Layout</h2> +</div> + + </div> + </div> + <div class="clear"> + <hr/> + </div> + <div id="footer"> + <div class="xright">© + 2006-2008 + + The Apache Software Foundation + + + + + + + + + </div> + <div class="clear"> + <hr/> + </div> + </div> + </body> +</html> Added: incubator/nmaven/www/0.16/user-guide/index.html URL: http://svn.apache.org/viewvc/incubator/nmaven/www/0.16/user-guide/index.html?rev=699345&view=auto ============================================================================== --- incubator/nmaven/www/0.16/user-guide/index.html (added) +++ incubator/nmaven/www/0.16/user-guide/index.html Fri Sep 26 07:45:17 2008 @@ -0,0 +1,217 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + + + + + + + + + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>Apache NMaven - User's Guide</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" /> + +<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script> + +<script type="text/javascript">_uacct = "UA-140879-1"; + urchinTracker();</script> + </head> + <body class="composite"> + <div id="banner"> + <a href="http://maven.apache.org/" id="bannerLeft"> + + <img src="http://maven.apache.org/images/apache-maven-project-2.png" alt="" /> + + </a> + <span id="bannerRight"> + + <img src=".././images/apache-incubator-logo.png" alt="" /> + + </span> + <div class="clear"> + <hr/> + </div> + </div> + <div id="breadcrumbs"> + + + + + + + + + <div class="xleft"> + Last Published: 2008-09-27 + | Version: 0.16-incubating-SNAPSHOT + </div> + <div class="xright"> <a href="../../../../projects/nmaven.html">Incubator Status</a> + | + <a href="../../..">NMaven</a> + | + <a href="http://maven.apache.org/" class="externalLink">Maven</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 NMaven</a> + </li> + + <li class="none"> + <a href="../features.html">Features</a> + </li> + </ul> + <h5>Installation</h5> + <ul> + + <li class="none"> + <a href="../installation-guide/building.html">Building from Sources</a> + </li> + + <li class="none"> + <a href="../installation-guide/toolchains.html">Configuring Toolchains</a> + </li> + </ul> + <h5>User's Guide</h5> + <ul> + + <li class="none"> + <a href="../user-guide/creating-projects.html">Creating Projects</a> + </li> + + <li class="none"> + <a href="../user-guide/archetypes.html">Project Archetypes</a> + </li> + + <li class="none"> + <a href="../user-guide/dependencies.html">Dependencies</a> + </li> + + <li class="none"> + <a href="../user-guide/testing.html">Testing with NUnit</a> + </li> + + <li class="none"> + <a href="../user-guide/assemblies.html">Assemblies</a> + </li> + </ul> + <h5>Developer's Guide</h5> + <ul> + + <li class="none"> + <a href="../developer-guide/integration-tests.html">Integration Tests</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" class="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>User's Guide</h2> +<ul><li><a href="creating-projects.html"> Creating Projects</a></li> +<li><a href="archetypes.html"> Project Archetypes</a></li> +<li><a href="dependencies.html"> Dependencies</a></li> +<li><a href="testing.html"> Testing with NUnit</a></li> +<li><a href="assemblies.html"> Assemblies</a></li> +</ul> +</div> + + </div> + </div> + <div class="clear"> + <hr/> + </div> + <div id="footer"> + <div class="xright">© + 2006-2008 + + The Apache Software Foundation + + + + + + + + + </div> + <div class="clear"> + <hr/> + </div> + </div> + </body> +</html> Added: incubator/nmaven/www/0.16/user-guide/quick-start.html URL: http://svn.apache.org/viewvc/incubator/nmaven/www/0.16/user-guide/quick-start.html?rev=699345&view=auto ============================================================================== --- incubator/nmaven/www/0.16/user-guide/quick-start.html (added) +++ incubator/nmaven/www/0.16/user-guide/quick-start.html Fri Sep 26 07:45:17 2008 @@ -0,0 +1,211 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + + + + + + + + + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>Apache NMaven - NMaven Quick Start</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" /> + +<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script> + +<script type="text/javascript">_uacct = "UA-140879-1"; + urchinTracker();</script> + </head> + <body class="composite"> + <div id="banner"> + <a href="http://maven.apache.org/" id="bannerLeft"> + + <img src="http://maven.apache.org/images/apache-maven-project-2.png" alt="" /> + + </a> + <span id="bannerRight"> + + <img src=".././images/apache-incubator-logo.png" alt="" /> + + </span> + <div class="clear"> + <hr/> + </div> + </div> + <div id="breadcrumbs"> + + + + + + + + + <div class="xleft"> + Last Published: 2008-09-27 + | Version: 0.16-incubating-SNAPSHOT + </div> + <div class="xright"> <a href="../../../../projects/nmaven.html">Incubator Status</a> + | + <a href="../../..">NMaven</a> + | + <a href="http://maven.apache.org/" class="externalLink">Maven</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 NMaven</a> + </li> + + <li class="none"> + <a href="../features.html">Features</a> + </li> + </ul> + <h5>Installation</h5> + <ul> + + <li class="none"> + <a href="../installation-guide/building.html">Building from Sources</a> + </li> + + <li class="none"> + <a href="../installation-guide/toolchains.html">Configuring Toolchains</a> + </li> + </ul> + <h5>User's Guide</h5> + <ul> + + <li class="none"> + <a href="../user-guide/creating-projects.html">Creating Projects</a> + </li> + + <li class="none"> + <a href="../user-guide/archetypes.html">Project Archetypes</a> + </li> + + <li class="none"> + <a href="../user-guide/dependencies.html">Dependencies</a> + </li> + + <li class="none"> + <a href="../user-guide/testing.html">Testing with NUnit</a> + </li> + + <li class="none"> + <a href="../user-guide/assemblies.html">Assemblies</a> + </li> + </ul> + <h5>Developer's Guide</h5> + <ul> + + <li class="none"> + <a href="../developer-guide/integration-tests.html">Integration Tests</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" class="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>New Project Quick Start</h2> +</div> + + </div> + </div> + <div class="clear"> + <hr/> + </div> + <div id="footer"> + <div class="xright">© + 2006-2008 + + The Apache Software Foundation + + + + + + + + + </div> + <div class="clear"> + <hr/> + </div> + </div> + </body> +</html> Added: incubator/nmaven/www/0.16/user-guide/testing.html URL: http://svn.apache.org/viewvc/incubator/nmaven/www/0.16/user-guide/testing.html?rev=699345&view=auto ============================================================================== --- incubator/nmaven/www/0.16/user-guide/testing.html (added) +++ incubator/nmaven/www/0.16/user-guide/testing.html Fri Sep 26 07:45:17 2008 @@ -0,0 +1,229 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + + + + + + + + + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>Apache NMaven - Testing with NUnit</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" /> + +<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script> + +<script type="text/javascript">_uacct = "UA-140879-1"; + urchinTracker();</script> + </head> + <body class="composite"> + <div id="banner"> + <a href="http://maven.apache.org/" id="bannerLeft"> + + <img src="http://maven.apache.org/images/apache-maven-project-2.png" alt="" /> + + </a> + <span id="bannerRight"> + + <img src=".././images/apache-incubator-logo.png" alt="" /> + + </span> + <div class="clear"> + <hr/> + </div> + </div> + <div id="breadcrumbs"> + + + + + + + + + <div class="xleft"> + Last Published: 2008-09-27 + | Version: 0.16-incubating-SNAPSHOT + </div> + <div class="xright"> <a href="../../../../projects/nmaven.html">Incubator Status</a> + | + <a href="../../..">NMaven</a> + | + <a href="http://maven.apache.org/" class="externalLink">Maven</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 NMaven</a> + </li> + + <li class="none"> + <a href="../features.html">Features</a> + </li> + </ul> + <h5>Installation</h5> + <ul> + + <li class="none"> + <a href="../installation-guide/building.html">Building from Sources</a> + </li> + + <li class="none"> + <a href="../installation-guide/toolchains.html">Configuring Toolchains</a> + </li> + </ul> + <h5>User's Guide</h5> + <ul> + + <li class="none"> + <a href="../user-guide/creating-projects.html">Creating Projects</a> + </li> + + <li class="none"> + <a href="../user-guide/archetypes.html">Project Archetypes</a> + </li> + + <li class="none"> + <a href="../user-guide/dependencies.html">Dependencies</a> + </li> + + <li class="none"> + <strong>Testing with NUnit</strong> + </li> + + <li class="none"> + <a href="../user-guide/assemblies.html">Assemblies</a> + </li> + </ul> + <h5>Developer's Guide</h5> + <ul> + + <li class="none"> + <a href="../developer-guide/integration-tests.html">Integration Tests</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" class="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>Testing with NUnit</h2> +<p>To add test sources to a project, you must first specify the directory where your test sources are located:</p> +<div class="source"><pre><build> + <sourceDirectory>.</sourceDirectory> + <testSourceDirectory>Test</testSourceDirectory> + ... +</build></pre> +</div> +<p>For more information on the directory layout, see <a href="user-guide/directory-layout.html"> Supported Directory Layouts</a>.</p> +<p>Next, add the NUnit version you would like you would like to use to your POM: </p> +<div class="source"><pre><dependency> + <groupId>org.apache.maven.dotnet</groupId> + <artifactId>NUnit.Framework</artifactId> + <version>2.4.6-incubating-SNAPSHOT</version> + <type>dotnet:library</type> + <scope>test</scope> +</dependency></pre> +</div> +<p><i>Note:</i> NUnit is currently only supported building with Microsoft, not Mono. </p> +</div> + + </div> + </div> + <div class="clear"> + <hr/> + </div> + <div id="footer"> + <div class="xright">© + 2006-2008 + + The Apache Software Foundation + + + + + + + + + </div> + <div class="clear"> + <hr/> + </div> + </div> + </body> +</html>