Author: sisbell Date: Fri May 25 19:15:36 2007 New Revision: 541846 URL: http://svn.apache.org/viewvc?view=rev&rev=541846 Log: The parent pom for the dotnet build.
Added: incubator/nmaven/trunk/pom-dotnet.xml (with props) Added: incubator/nmaven/trunk/pom-dotnet.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/pom-dotnet.xml?view=auto&rev=541846 ============================================================================== --- incubator/nmaven/trunk/pom-dotnet.xml (added) +++ incubator/nmaven/trunk/pom-dotnet.xml Fri May 25 19:15:36 2007 @@ -0,0 +1,162 @@ +<?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="http://maven.apache.org/POM/4.0.0" 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>NMaven.Project</groupId> + <artifactId>NMaven.Project</artifactId> + <packaging>pom</packaging> + <version>0.14-SNAPSHOT</version> + <name>NMaven.Project</name> + <url>http://incubator.apache.org/nmaven</url> + <description> + NMaven provides Maven 2.x plugins to support building of .NET applications + </description> + <mailingLists> + <mailingList> + <name>NMaven Dev List</name> + <subscribe>[EMAIL PROTECTED]</subscribe> + <unsubscribe>[EMAIL PROTECTED]</unsubscribe> + <post>[EMAIL PROTECTED]</post> + <archive>http://mail-archives.apache.org/mod_mbox/incubator-nmaven-dev/</archive> + <otherArchives> + <otherArchive>http://www.nabble.com/nmaven-dev-f17655.html</otherArchive> + </otherArchives> + </mailingList> + <mailingList> + <name>NMaven Commits List</name> + <subscribe>[EMAIL PROTECTED]</subscribe> + <unsubscribe>[EMAIL PROTECTED]</unsubscribe> + <post>nmaven-commits@incubator.apache.org</post> + <archive>http://mail-archives.apache.org/mod_mbox/incubator-nmaven-commits/</archive> + <otherArchives> + <otherArchive>http://www.nabble.com/nmaven-commits-f17656.html</otherArchive> + </otherArchives> + </mailingList> + </mailingLists> + <scm> + <url>https://svn.apache.org/repos/asf/incubator/nmaven/</url> + <connection>scm:svn:https://svn.apache.org/repos/asf/incubator/nmaven/</connection> + <developerConnection> + scm:svn:https://svn.apache.org/repos/asf/incubator/nmaven/</developerConnection> + <tag>REL_0_14_SNAPSHOT</tag> + </scm> + <organization> + <name>NMaven</name> + <url>http://incubator.apache.org/nmaven</url> + </organization> + <issueManagement> + <system>JIRA Bugtracking</system> + <url>http://jira.codehaus.org/browse/NMAVEN</url> + </issueManagement> + <licenses> + <license> + <name>Apache 2.0</name> + <url>LICENSE.txt</url> + </license> + </licenses> + <developers> + <developer> + <name>Brett Porter</name> + <id>brett</id> + <email>[EMAIL PROTECTED]</email> + <roles> + <role>champion</role> + <role>mentor</role> + </roles> + </developer> + <developer> + <name>Jason van Zyl</name> + <id>jvanzyl</id> + <email>[EMAIL PROTECTED]</email> + <roles> + <role>champion</role> + <role>mentor</role> + </roles> + </developer> + <developer> + <name>Shane Isbell</name> + <id>sisbell</id> + <email>[EMAIL PROTECTED]</email> + <url>http://jroller.com/page/random7</url> + <roles> + <role>committer</role> + </roles> + </developer> + <developer> + <name>Dan Fabulich</name> + <id>dfabulich</id> + <email>[EMAIL PROTECTED]</email> + <roles> + <role>committer</role> + </roles> + </developer> + <developer> + <name>Chris Stevenson</name> + <id>chrisjs</id> + <email>[EMAIL PROTECTED]</email> + <roles> + <role>committer</role> + </roles> + </developer> + <developer> + <name>Trygve Laugstol</name> + <id>trygvis</id> + <email>[EMAIL PROTECTED]</email> + <roles> + <role>committer</role> + </roles> + </developer> + <developer> + <name>James Strachan</name> + <id>jstrachan</id> + <email>[EMAIL PROTECTED]</email> + <roles> + <role>committer</role> + </roles> + </developer> + </developers> + <modules> + <module>assemblies</module> + <module>plugins/netplugins</module> + </modules> + <build> + <sourceDirectory>src/main/csharp</sourceDirectory> + <testSourceDirectory>src/test/csharp</testSourceDirectory> + <plugins> + <plugin> + <groupId>org.apache.maven.dotnet.plugins</groupId> + <artifactId>maven-compile-plugin</artifactId> + <extensions>true</extensions> + <configuration> + <frameworkVersion>2.0.50727</frameworkVersion> + </configuration> + </plugin> + </plugins> + </build> + <distributionManagement> + <snapshotRepository> + <uniqueVersion>true</uniqueVersion> + <id>snapshot repo</id> + <name>snapshot repo</name> + <url>file://${deploy.directory}</url> + <layout>default</layout> + </snapshotRepository> + </distributionManagement> +</project> \ No newline at end of file Propchange: incubator/nmaven/trunk/pom-dotnet.xml ------------------------------------------------------------------------------ svn:eol-style = native