You are viewing a plain text version of this content. The canonical link for it is here.
Posted to nmaven-commits@incubator.apache.org by si...@apache.org on 2007/05/18 21:37:27 UTC

svn commit: r539610 - in /incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026: ./ expected-results.txt goals.txt pom.xml src/ src/main/ src/main/csharp/ src/main/csharp/It0026.cs

Author: sisbell
Date: Fri May 18 14:37:26 2007
New Revision: 539610

URL: http://svn.apache.org/viewvc?view=rev&rev=539610
Log:
Forgot to add one of the snapshot it tests.

Added:
    incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/
    incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/expected-results.txt   (with props)
    incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/goals.txt   (with props)
    incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/pom.xml   (with props)
    incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/src/
    incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/src/main/
    incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/src/main/csharp/
    incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/src/main/csharp/It0026.cs

Added: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/expected-results.txt
URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/expected-results.txt?view=auto&rev=539610
==============================================================================
--- incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/expected-results.txt (added)
+++ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/expected-results.txt Fri May 18 14:37:26 2007
@@ -0,0 +1 @@
+target/it0026.dll
\ No newline at end of file

Propchange: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/expected-results.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/goals.txt
URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/goals.txt?view=auto&rev=539610
==============================================================================
--- incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/goals.txt (added)
+++ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/goals.txt Fri May 18 14:37:26 2007
@@ -0,0 +1 @@
+install
\ No newline at end of file

Propchange: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/goals.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/pom.xml
URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/pom.xml?view=auto&rev=539610
==============================================================================
--- incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/pom.xml (added)
+++ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/pom.xml Fri May 18 14:37:26 2007
@@ -0,0 +1,18 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.maven.it</groupId>
+  <artifactId>it0026</artifactId>
+  <packaging>library</packaging>
+  <version>1.0.0-SNAPSHOT</version>
+  <name>it0026</name>
+  <build>
+    <sourceDirectory>src/main/csharp</sourceDirectory>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.dotnet.plugins</groupId>
+        <artifactId>maven-compile-plugin</artifactId>
+        <extensions>true</extensions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Propchange: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/src/main/csharp/It0026.cs
URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/src/main/csharp/It0026.cs?view=auto&rev=539610
==============================================================================
--- incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/src/main/csharp/It0026.cs (added)
+++ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0026/src/main/csharp/It0026.cs Fri May 18 14:37:26 2007
@@ -0,0 +1,8 @@
+namespace org.apache.maven.it {
+
+public class It0026 {
+	public static void Main () { 
+		System.Console.Write("Hello World!"); 
+	} 
+}
+}