You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ws...@apache.org on 2009/04/07 05:19:31 UTC

svn commit: r762611 - in /continuum/sandbox/examples/MySolution: ./ MyClassLibrary/ MyClassLibrary/pom.xml pom.xml

Author: wsmoak
Date: Tue Apr  7 03:19:30 2009
New Revision: 762611

URL: http://svn.apache.org/viewvc?rev=762611&view=rev
Log:
[CONTINUUM-1997] Add pom.xml files as generated by Codeplex NPanday 1.0.
Add ignores for *.suo, bin, obj files/directories.

Added:
    continuum/sandbox/examples/MySolution/MyClassLibrary/pom.xml   (with props)
    continuum/sandbox/examples/MySolution/pom.xml   (with props)
Modified:
    continuum/sandbox/examples/MySolution/   (props changed)
    continuum/sandbox/examples/MySolution/MyClassLibrary/   (props changed)

Propchange: continuum/sandbox/examples/MySolution/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Apr  7 03:19:30 2009
@@ -0,0 +1 @@
+*.suo

Propchange: continuum/sandbox/examples/MySolution/MyClassLibrary/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Apr  7 03:19:30 2009
@@ -0,0 +1,2 @@
+bin
+obj

Added: continuum/sandbox/examples/MySolution/MyClassLibrary/pom.xml
URL: http://svn.apache.org/viewvc/continuum/sandbox/examples/MySolution/MyClassLibrary/pom.xml?rev=762611&view=auto
==============================================================================
--- continuum/sandbox/examples/MySolution/MyClassLibrary/pom.xml (added)
+++ continuum/sandbox/examples/MySolution/MyClassLibrary/pom.xml Tue Apr  7 03:19:30 2009
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8"?>
+<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://maven.apache.org/POM/4.0.0">
+  <parent>
+    <artifactId>MySolution-parent</artifactId>
+    <groupId>org.apache.continuum.examples</groupId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>..\pom.xml</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>MyClassLibrary</artifactId>
+  <packaging>library</packaging>
+  <name>Org.apache.continuum.examples : MyClassLibrary</name>
+  <build>
+    <sourceDirectory>./</sourceDirectory>
+    <plugins>
+      <plugin>
+        <groupId>npanday.plugin</groupId>
+        <artifactId>maven-compile-plugin</artifactId>
+        <extensions>true</extensions>
+        <configuration>
+          <includeSources>
+            <includeSource>Class1.cs</includeSource>
+            <includeSource>Properties\AssemblyInfo.cs</includeSource>
+          </includeSources>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Propchange: continuum/sandbox/examples/MySolution/MyClassLibrary/pom.xml
------------------------------------------------------------------------------
    svn:executable = *

Added: continuum/sandbox/examples/MySolution/pom.xml
URL: http://svn.apache.org/viewvc/continuum/sandbox/examples/MySolution/pom.xml?rev=762611&view=auto
==============================================================================
--- continuum/sandbox/examples/MySolution/pom.xml (added)
+++ continuum/sandbox/examples/MySolution/pom.xml Tue Apr  7 03:19:30 2009
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8"?>
+<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://maven.apache.org/POM/4.0.0">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.continuum.examples</groupId>
+  <artifactId>MySolution-parent</artifactId>
+  <packaging>pom</packaging>
+  <name>org.apache.continuum.examples : MySolution-parent</name>
+  <version>1.0-SNAPSHOT</version>
+  <scm>
+    <connection>scm:svn:https://svn.apache.org/repos/asf/continuum/sandbox/examples/MySolution</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/continuum/sandbox/examples/MySolution</developerConnection>
+    <url>https://svn.apache.org/repos/asf/continuum/sandbox/examples/MySolution</url>
+  </scm>
+  <modules>
+    <module>MyClassLibrary</module>
+  </modules>
+</project>

Propchange: continuum/sandbox/examples/MySolution/pom.xml
------------------------------------------------------------------------------
    svn:executable = *