Author: sisbell Date: Fri Jan 25 13:36:56 2008 New Revision: 615354 URL: http://svn.apache.org/viewvc?rev=615354&view=rev Log: Adding simple archetype for dotnet projects.
Added: incubator/nmaven/trunk/archetypes/ incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/ incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/pom.xml (with props) incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/ incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/ incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/ incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/META-INF/ incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/META-INF/maven/ incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/META-INF/maven/archetype.xml (with props) incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/ incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/Class1.cs incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/pom.xml (with props) incubator/nmaven/trunk/archetypes/pom.xml (with props) Modified: incubator/nmaven/trunk/pom.xml Added: incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/pom.xml?rev=615354&view=auto ============================================================================== --- incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/pom.xml (added) +++ incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/pom.xml Fri Jan 25 13:36:56 2008 @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <parent> + <groupId>org.apache.maven.dotnet</groupId> + <version>0.15-incubating-SNAPSHOT</version> + <artifactId>dotnet-archetypes</artifactId> + </parent> + <modelVersion>4.0.0</modelVersion> + <groupId>org.apache.maven.dotnet</groupId> + <artifactId>maven-archetype-dotnet-simple</artifactId> + <name>maven-archetype-dotnet-simple</name> +</project> Propchange: incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/META-INF/maven/archetype.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/META-INF/maven/archetype.xml?rev=615354&view=auto ============================================================================== --- incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/META-INF/maven/archetype.xml (added) +++ incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/META-INF/maven/archetype.xml Fri Jan 25 13:36:56 2008 @@ -0,0 +1,6 @@ +<archetype> + <id>maven-archetype-dotnet-simple</id> + <resources> + <resource>Class1.cs</resource> + </resources> +</archetype> Propchange: incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/META-INF/maven/archetype.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/Class1.cs URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/Class1.cs?rev=615354&view=auto ============================================================================== --- incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/Class1.cs (added) +++ incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/Class1.cs Fri Jan 25 13:36:56 2008 @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace ClassLibrary1 +{ + public class Class1 + { + } +} \ No newline at end of file Added: 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=615354&view=auto ============================================================================== --- incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/pom.xml (added) +++ incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/pom.xml Fri Jan 25 13:36:56 2008 @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + <groupId>${groupId}</groupId> + <artifactId>${artifactId}</artifactId> + <version>${version}</version> + <name>Sample Application</name> + <packaging>dotnet:library</packaging> + <build> + <sourceDirectory>.</sourceDirectory> + <plugins> + <plugin> + <groupId>org.apache.maven.dotnet.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <extensions>true</extensions> + </plugin> + </plugins> + </build> +</project> Propchange: incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/nmaven/trunk/archetypes/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/archetypes/pom.xml?rev=615354&view=auto ============================================================================== --- incubator/nmaven/trunk/archetypes/pom.xml (added) +++ incubator/nmaven/trunk/archetypes/pom.xml Fri Jan 25 13:36:56 2008 @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +--> +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <parent> + <groupId>org.apache.maven.dotnet</groupId> + <version>0.15-incubating-SNAPSHOT</version> + <artifactId>maven-dotnet-parent</artifactId> + </parent> + <modelVersion>4.0.0</modelVersion> + <groupId>org.apache.maven.dotnet</groupId> + <artifactId>dotnet-archetypes</artifactId> + <packaging>pom</packaging> + <name>dotnet</name> + <modules> + <module>maven-archetype-dotnet-simple</module> + </modules> +</project> Propchange: incubator/nmaven/trunk/archetypes/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Modified: incubator/nmaven/trunk/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/pom.xml?rev=615354&r1=615353&r2=615354&view=diff ============================================================================== --- incubator/nmaven/trunk/pom.xml (original) +++ incubator/nmaven/trunk/pom.xml Fri Jan 25 13:36:56 2008 @@ -142,6 +142,7 @@ </developer> </developers> <modules> + <module>archetypes</module> <module>components</module> <module>plugins</module> </modules>