Author: sisbell Date: Thu Nov 15 12:45:41 2007 New Revision: 595451 URL: http://svn.apache.org/viewvc?rev=595451&view=rev Log: Added sample nunit test class in the archetype.
Modified: incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/META-INF/archetype.xml incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/pom.xml Modified: incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/META-INF/archetype.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/META-INF/archetype.xml?rev=595451&r1=595450&r2=595451&view=diff ============================================================================== --- incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/META-INF/archetype.xml (original) +++ incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/META-INF/archetype.xml Thu Nov 15 12:45:41 2007 @@ -2,5 +2,6 @@ <id>maven-archetype-dotnet-simple</id> <resources> <resource>src/main/csharp/Sample/MyApp.cs</resource> + <resource>src/test/csharp/Sample/MyAppTest.cs</resource> </resources> </archetype> Modified: incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/pom.xml?rev=595451&r1=595450&r2=595451&view=diff ============================================================================== --- incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/pom.xml (original) +++ incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/pom.xml Thu Nov 15 12:45:41 2007 @@ -4,8 +4,16 @@ <modelVersion>4.0.0</modelVersion> <groupId>${groupId}</groupId> <artifactId>${artifactId}</artifactId> - <version>0.14-incubating-SNAPSHOT</version> - <packaging>library</packaging> + <version>${version}</version> + <packaging>library</packaging> + <dependencies> + <dependency> + <groupId>NUnit</groupId> + <artifactId>NUnit.Framework</artifactId> + <version>2.2.8.0</version> + <type>library</type> + </dependency> + </dependencies> <build> <sourceDirectory>src/main/csharp</sourceDirectory> <testSourceDirectory>src/test/csharp</testSourceDirectory> @@ -14,7 +22,7 @@ <groupId>org.apache.maven.dotnet.plugins</groupId> <artifactId>maven-compile-plugin</artifactId> <extensions>true</extensions> - </plugin> + </plugin> </plugins> </build> </project>