Author: sisbell Date: Tue Feb 5 14:31:33 2008 New Revision: 618804 URL: http://svn.apache.org/viewvc?rev=618804&view=rev Log: Fixed archetypes. They were using old artifact name for compilers.
Modified: incubator/nmaven/trunk/archetypes/maven-archetype-class-library/src/main/resources/archetype-resources/pom.xml incubator/nmaven/trunk/archetypes/maven-archetype-console-application/src/main/resources/archetype-resources/pom.xml incubator/nmaven/trunk/archetypes/maven-archetype-windows-application/src/main/resources/archetype-resources/pom.xml incubator/nmaven/trunk/archetypes/maven-archetype-windows-control/src/main/resources/archetype-resources/pom.xml incubator/nmaven/trunk/maven-dotnet.iml incubator/nmaven/trunk/site/versioned/src/site/apt/getting-started.apt Modified: incubator/nmaven/trunk/archetypes/maven-archetype-class-library/src/main/resources/archetype-resources/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/archetypes/maven-archetype-class-library/src/main/resources/archetype-resources/pom.xml?rev=618804&r1=618803&r2=618804&view=diff ============================================================================== --- incubator/nmaven/trunk/archetypes/maven-archetype-class-library/src/main/resources/archetype-resources/pom.xml (original) +++ incubator/nmaven/trunk/archetypes/maven-archetype-class-library/src/main/resources/archetype-resources/pom.xml Tue Feb 5 14:31:33 2008 @@ -13,7 +13,7 @@ <plugins> <plugin> <groupId>org.apache.maven.dotnet.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> + <artifactId>maven-dotnet-compiler-plugin</artifactId> <extensions>true</extensions> </plugin> </plugins> Modified: incubator/nmaven/trunk/archetypes/maven-archetype-console-application/src/main/resources/archetype-resources/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/archetypes/maven-archetype-console-application/src/main/resources/archetype-resources/pom.xml?rev=618804&r1=618803&r2=618804&view=diff ============================================================================== --- incubator/nmaven/trunk/archetypes/maven-archetype-console-application/src/main/resources/archetype-resources/pom.xml (original) +++ incubator/nmaven/trunk/archetypes/maven-archetype-console-application/src/main/resources/archetype-resources/pom.xml Tue Feb 5 14:31:33 2008 @@ -13,7 +13,7 @@ <plugins> <plugin> <groupId>org.apache.maven.dotnet.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> + <artifactId>maven-dotnet-compiler-plugin</artifactId> <extensions>true</extensions> </plugin> </plugins> Modified: incubator/nmaven/trunk/archetypes/maven-archetype-windows-application/src/main/resources/archetype-resources/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/archetypes/maven-archetype-windows-application/src/main/resources/archetype-resources/pom.xml?rev=618804&r1=618803&r2=618804&view=diff ============================================================================== --- incubator/nmaven/trunk/archetypes/maven-archetype-windows-application/src/main/resources/archetype-resources/pom.xml (original) +++ incubator/nmaven/trunk/archetypes/maven-archetype-windows-application/src/main/resources/archetype-resources/pom.xml Tue Feb 5 14:31:33 2008 @@ -13,7 +13,7 @@ <plugins> <plugin> <groupId>org.apache.maven.dotnet.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> + <artifactId>maven-dotnet-compiler-plugin</artifactId> <extensions>true</extensions> </plugin> </plugins> Modified: incubator/nmaven/trunk/archetypes/maven-archetype-windows-control/src/main/resources/archetype-resources/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/archetypes/maven-archetype-windows-control/src/main/resources/archetype-resources/pom.xml?rev=618804&r1=618803&r2=618804&view=diff ============================================================================== --- incubator/nmaven/trunk/archetypes/maven-archetype-windows-control/src/main/resources/archetype-resources/pom.xml (original) +++ incubator/nmaven/trunk/archetypes/maven-archetype-windows-control/src/main/resources/archetype-resources/pom.xml Tue Feb 5 14:31:33 2008 @@ -13,7 +13,7 @@ <plugins> <plugin> <groupId>org.apache.maven.dotnet.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> + <artifactId>maven-dotnet-compiler-plugin</artifactId> <extensions>true</extensions> </plugin> </plugins> Modified: incubator/nmaven/trunk/maven-dotnet.iml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/maven-dotnet.iml?rev=618804&r1=618803&r2=618804&view=diff ============================================================================== --- incubator/nmaven/trunk/maven-dotnet.iml (original) +++ incubator/nmaven/trunk/maven-dotnet.iml Tue Feb 5 14:31:33 2008 @@ -11,11 +11,9 @@ <sourceFolder url="file://$MODULE_DIR$/components/maven-dotnet-core-it-runner/src/test/java" isTestSource="false" /> <sourceFolder url="file://$MODULE_DIR$/components/maven-dotnet-core/src/main/java" isTestSource="false" /> <sourceFolder url="file://$MODULE_DIR$/components/maven-dotnet-extensions/src/main/java" isTestSource="false" /> - <sourceFolder url="file://$MODULE_DIR$/components/maven-dotnet-toolchain-model/target/generated-sources/modello" isTestSource="false" /> - <sourceFolder url="file://$MODULE_DIR$/components/maven-dotnet-toolchain/src/main/java" isTestSource="false" /> <sourceFolder url="file://$MODULE_DIR$/core-integration-tests/src/test/java" isTestSource="false" /> - <sourceFolder url="file://$MODULE_DIR$/plugins/dotnet-test-plugin/src/main/java" isTestSource="false" /> - <sourceFolder url="file://$MODULE_DIR$/plugins/maven-compiler-plugin/src/main/java" isTestSource="false" /> + <sourceFolder url="file://$MODULE_DIR$/plugins/maven-dotnet-compiler-plugin/src/main/java" isTestSource="false" /> + <sourceFolder url="file://$MODULE_DIR$/plugins/maven-dotnet-test-plugin/src/main/java" isTestSource="false" /> <sourceFolder url="file://$MODULE_DIR$/plugins/maven-dotnet-toolchain-plugin/src/main/java" isTestSource="false" /> </content> <orderEntry type="inheritedJdk" /> Modified: incubator/nmaven/trunk/site/versioned/src/site/apt/getting-started.apt URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/site/versioned/src/site/apt/getting-started.apt?rev=618804&r1=618803&r2=618804&view=diff ============================================================================== --- incubator/nmaven/trunk/site/versioned/src/site/apt/getting-started.apt (original) +++ incubator/nmaven/trunk/site/versioned/src/site/apt/getting-started.apt Tue Feb 5 14:31:33 2008 @@ -12,6 +12,8 @@ * {{{getting-started.html#Project Dependencies} Project Dependencies}} + * {{{getting-started.html#NUnit} NUnit}} + * {{{getting-started.html#Archetypes} Archetypes}} * {Building NMaven} @@ -42,7 +44,7 @@ On Windows, Mono looks something like: - * install/sdk path: C:\Program Files\Mono-1.2.3.1\bin + * install root/SDK path: C:\Program Files\Mono-1.2.3.1\bin ** Build @@ -223,6 +225,10 @@ +----+ dotnet:winexe and dotnet:exe can also be used as dependency types. dotnet:module can also be used but will not be transitive. + +* {NUnit} + + * {Archetypes}