From nmaven-commits-return-873-apmail-incubator-nmaven-commits-archive=incubator.apache.org@incubator.apache.org Fri Sep 26 14:46:23 2008 Return-Path: Delivered-To: apmail-incubator-nmaven-commits-archive@locus.apache.org Received: (qmail 40026 invoked from network); 26 Sep 2008 14:46:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Sep 2008 14:46:23 -0000 Received: (qmail 84477 invoked by uid 500); 26 Sep 2008 14:46:21 -0000 Delivered-To: apmail-incubator-nmaven-commits-archive@incubator.apache.org Received: (qmail 84463 invoked by uid 500); 26 Sep 2008 14:46:21 -0000 Mailing-List: contact nmaven-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: nmaven-dev@incubator.apache.org Delivered-To: mailing list nmaven-commits@incubator.apache.org Received: (qmail 84454 invoked by uid 99); 26 Sep 2008 14:46:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Sep 2008 07:46:21 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Sep 2008 14:45:17 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id F398823889FC; Fri, 26 Sep 2008 07:45:20 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r699345 [3/3] - in /incubator/nmaven/www/0.16: ./ css/ developer-guide/ images/ images/logos/ installation-guide/ user-guide/ Date: Fri, 26 Sep 2008 14:45:19 -0000 To: nmaven-commits@incubator.apache.org From: brett@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080926144520.F398823889FC@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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 @@ + + + + + + + + + + + + + + + Apache NMaven - Dependencies + + + + + + + + + + + +
+ +
+
+
+

Project Dependencies

+

A typical dependency would look like the following:

+
<dependency>
+  <groupId>NMaven.Its</groupId>
+  <artifactId>NMaven.It.It0004</artifactId>
+  <version>1.0.0</version>
+  <type>dotnet:library</type>
+</dependency>
+
+

dotnet:winexe and dotnet:exe can also be used as dependency types. dotnet:module can also be used but will not be transitive.

+

Dependencies in the Global Assembly Cache (GAC)

+

To use a GAC dependency, you will need to set a GAC_ROOT 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: dotnet:gac_32 and dotnet:gac.

+
<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>
+
+
+
+ +
+
+
+
+
+ + + 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 @@ + + + + + + + + + + + + + + + Apache NMaven - Directory Layout + + + + + + + + + + + +
+ +
+
+
+

Directory Layout

+
+ +
+
+
+
+
+ + + 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 @@ + + + + + + + + + + + + + + + Apache NMaven - User's Guide + + + + + + + + + + + +
+ +
+ +
+
+
+ + + 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 @@ + + + + + + + + + + + + + + + Apache NMaven - NMaven Quick Start + + + + + + + + + + + +
+ +
+
+
+

New Project Quick Start

+
+ +
+
+
+
+
+ + + 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 @@ + + + + + + + + + + + + + + + Apache NMaven - Testing with NUnit + + + + + + + + + + + +
+ +
+
+
+

Testing with NUnit

+

To add test sources to a project, you must first specify the directory where your test sources are located:

+
<build>
+  <sourceDirectory>.</sourceDirectory>
+  <testSourceDirectory>Test</testSourceDirectory>
+  ...
+</build>
+
+

For more information on the directory layout, see Supported Directory Layouts.

+

Next, add the NUnit version you would like you would like to use to your POM:

+
<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>
+
+

Note: NUnit is currently only supported building with Microsoft, not Mono.

+
+ +
+
+
+
+
+ + +