Propchange: incubator/nmaven/branches/SI_IDE/assemblies/NMaven.Model/Pom/Pom.xsd ------------------------------------------------------------------------------ svn:eol-style = native
Added: incubator/nmaven/branches/SI_IDE/assemblies/NMaven.Model/Pom/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_IDE/assemblies/NMaven.Model/Pom/pom.xml?view=auto&rev=509334 ============================================================================== --- incubator/nmaven/branches/SI_IDE/assemblies/NMaven.Model/Pom/pom.xml (added) +++ incubator/nmaven/branches/SI_IDE/assemblies/NMaven.Model/Pom/pom.xml Mon Feb 19 13:10:29 2007 @@ -0,0 +1,35 @@ +<project> + <modelVersion>4.0.0</modelVersion> + <groupId>NMaven.Model</groupId> + <artifactId>NMaven.Model.Pom</artifactId> + <packaging>library</packaging> + <version>0.14</version> + <name>NMaven.Model.Pom</name> + + <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> + </plugin> + <plugin> + <groupId>org.apache.maven.dotnet.plugins</groupId> + <artifactId>maven-xsd-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>xsd</goal> + </goals> + </execution> + </executions> + <configuration> + <xsdFile>${basedir}/Pom.xsd</xsdFile> + </configuration> + </plugin> + </plugins> + </build> +</project> \ No newline at end of file Propchange: incubator/nmaven/branches/SI_IDE/assemblies/NMaven.Model/Pom/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/nmaven/branches/SI_IDE/assemblies/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_IDE/assemblies/pom.xml?view=auto&rev=509334 ============================================================================== --- incubator/nmaven/branches/SI_IDE/assemblies/pom.xml (added) +++ incubator/nmaven/branches/SI_IDE/assemblies/pom.xml Mon Feb 19 13:10:29 2007 @@ -0,0 +1,136 @@ +<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>org.apache.maven.dotnet</groupId> + <artifactId>nmaven-components</artifactId> + <packaging>pom</packaging> + <version>0.14</version> + <name>nmaven-components</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>nmaven-dev@incubator.apache.org</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>NMaven.Core</module> + <module>NMaven.Model/Pom</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> + </plugin> + </plugins> + </build> + +</project> \ No newline at end of file Propchange: incubator/nmaven/branches/SI_IDE/assemblies/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native