Author: sisbell Date: Fri May 11 22:20:05 2007 New Revision: 537338 URL: http://svn.apache.org/viewvc?view=rev&rev=537338 Log: Adding the IT tests included with the deplo patch.
Added: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/expected-results.txt (with props) incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/goals.txt (with props) incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/pom.xml (with props) incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/src/ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/src/main/ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/src/main/csharp/ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/src/main/csharp/It0028.cs incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/expected-results.txt (with props) incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/goals.txt (with props) incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/pom.xml (with props) incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/src/ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/src/main/ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/src/main/csharp/ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/src/main/csharp/It0029.cs incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/expected-results.txt (with props) incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/goals.txt (with props) incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/pom.xml (with props) incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/src/ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/src/main/ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/src/main/csharp/ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/src/main/csharp/It0030.cs Added: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/expected-results.txt URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/expected-results.txt?view=auto&rev=537338 ============================================================================== --- incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/expected-results.txt (added) +++ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/expected-results.txt Fri May 11 22:20:05 2007 @@ -0,0 +1,2 @@ +target/it0028.dll +target/remoteSnapshotRepo/snapshots/org/apache/maven/it/it0028/1.0.0-SNAPSHOT \ No newline at end of file Propchange: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/expected-results.txt ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/goals.txt URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/goals.txt?view=auto&rev=537338 ============================================================================== --- incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/goals.txt (added) +++ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/goals.txt Fri May 11 22:20:05 2007 @@ -0,0 +1 @@ +deploy \ No newline at end of file Propchange: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/goals.txt ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/pom.xml?view=auto&rev=537338 ============================================================================== --- incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/pom.xml (added) +++ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/pom.xml Fri May 11 22:20:05 2007 @@ -0,0 +1,47 @@ +<project> + <modelVersion>4.0.0</modelVersion> + <groupId>org.apache.maven.it</groupId> + <artifactId>it0028</artifactId> + <packaging>library</packaging> + <version>1.0.0-SNAPSHOT</version> + <name>it0028</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> + <plugin> + <groupId>org.apache.maven.dotnet.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <executions> + <execution> + <phase>deploy</phase> + <goals> + <goal>deploy-dotnet</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + <dependencies> + <dependency> + <groupId>org.apache.maven.it</groupId> + <artifactId>it0026</artifactId> + <version>1.0.0-SNAPSHOT</version> + <type>library</type> + </dependency> + </dependencies> + <distributionManagement> + <snapshotRepository> + <uniqueVersion>true</uniqueVersion> + <id>snapshot repo</id> + <name>snapshot repo</name> + <url>file://${basedir}/target/remoteSnapshotRepo/snapshots</url> + <layout>default</layout> + </snapshotRepository> + </distributionManagement> +</project> Propchange: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/src/main/csharp/It0028.cs URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/src/main/csharp/It0028.cs?view=auto&rev=537338 ============================================================================== --- incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/src/main/csharp/It0028.cs (added) +++ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0028/src/main/csharp/It0028.cs Fri May 11 22:20:05 2007 @@ -0,0 +1,9 @@ +namespace org.apache.maven.it { + +public class It0028 { + public static void Main () { + System.Console.Write("Hello World!"); + It0026 it = new It0026(); + } +} +} Added: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/expected-results.txt URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/expected-results.txt?view=auto&rev=537338 ============================================================================== --- incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/expected-results.txt (added) +++ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/expected-results.txt Fri May 11 22:20:05 2007 @@ -0,0 +1,2 @@ +target/it0029.dll +target/remoteRepo/org/apache/maven/it/it0029/1.0.0 \ No newline at end of file Propchange: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/expected-results.txt ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/goals.txt URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/goals.txt?view=auto&rev=537338 ============================================================================== --- incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/goals.txt (added) +++ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/goals.txt Fri May 11 22:20:05 2007 @@ -0,0 +1 @@ +deploy \ No newline at end of file Propchange: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/goals.txt ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/pom.xml?view=auto&rev=537338 ============================================================================== --- incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/pom.xml (added) +++ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/pom.xml Fri May 11 22:20:05 2007 @@ -0,0 +1,46 @@ +<project> + <modelVersion>4.0.0</modelVersion> + <groupId>org.apache.maven.it</groupId> + <artifactId>it0029</artifactId> + <packaging>library</packaging> + <version>1.0.0</version> + <name>it0029</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> + <plugin> + <groupId>org.apache.maven.dotnet.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <executions> + <execution> + <phase>deploy</phase> + <goals> + <goal>deploy-dotnet</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + <distributionManagement> + <snapshotRepository> + <uniqueVersion>true</uniqueVersion> + <id>my fake snapshot</id> + <name>Fake Snapshot Repository</name> + <url>file://${basedir}/target/remoteSnapshotRepo/snapshots</url> + <layout>default</layout> + </snapshotRepository> + <repository> + <uniqueVersion>false</uniqueVersion> + <id>regular repo</id> + <name>regular repo</name> + <url>file://${basedir}/target/remoteRepo</url> + <layout>default</layout> + </repository> + </distributionManagement> +</project> Propchange: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/src/main/csharp/It0029.cs URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/src/main/csharp/It0029.cs?view=auto&rev=537338 ============================================================================== --- incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/src/main/csharp/It0029.cs (added) +++ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0029/src/main/csharp/It0029.cs Fri May 11 22:20:05 2007 @@ -0,0 +1,8 @@ +namespace org.apache.maven.it { + +public class It0029 { + public static void Main () { + System.Console.Write("Hello World!"); + } +} +} Added: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/expected-results.txt URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/expected-results.txt?view=auto&rev=537338 ============================================================================== --- incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/expected-results.txt (added) +++ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/expected-results.txt Fri May 11 22:20:05 2007 @@ -0,0 +1 @@ +target/it0030.dll \ No newline at end of file Propchange: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/expected-results.txt ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/goals.txt URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/goals.txt?view=auto&rev=537338 ============================================================================== --- incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/goals.txt (added) +++ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/goals.txt Fri May 11 22:20:05 2007 @@ -0,0 +1 @@ +install \ No newline at end of file Propchange: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/goals.txt ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/pom.xml?view=auto&rev=537338 ============================================================================== --- incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/pom.xml (added) +++ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/pom.xml Fri May 11 22:20:05 2007 @@ -0,0 +1,62 @@ +<project> + <modelVersion>4.0.0</modelVersion> + <groupId>org.apache.maven.it</groupId> + <artifactId>it0030</artifactId> + <packaging>library</packaging> + <version>1.0.0-SNAPSHOT</version> + <name>it0030</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> + <plugin> + <groupId>org.apache.maven.dotnet.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <executions> + <execution> + <phase>deploy</phase> + <goals> + <goal>deploy-dotnet</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>org.apache.maven.it</groupId> + <artifactId>it0029</artifactId> + <version>1.0.0</version> + <type>library</type> + </dependency> + <dependency> + <groupId>org.apache.maven.it</groupId> + <artifactId>it0028</artifactId> + <version>1.0.0-SNAPSHOT</version> + <type>library</type> + </dependency> + </dependencies> + + <repositories> + <repository> + <id>snapshot repo</id> + <name>snapshot repo</name> + <url>file://${basedir}/../it0028/target/remoteSnapshotRepo/snapshots</url> + <!-- Check for new snapshots every X minutes --> + <snapshots> + <updatePolicy>interval:1</updatePolicy> + </snapshots> + </repository> + <repository> + <id>regular repo</id> + <name>regular repo</name> + <url>file://${basedir}/../it0029/target/remoteRepo</url> + </repository> + </repositories> +</project> Propchange: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/src/main/csharp/It0030.cs URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/src/main/csharp/It0030.cs?view=auto&rev=537338 ============================================================================== --- incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/src/main/csharp/It0030.cs (added) +++ incubator/nmaven/branches/SI_XPT/integration-tests/tests/it0030/src/main/csharp/It0030.cs Fri May 11 22:20:05 2007 @@ -0,0 +1,10 @@ +namespace org.apache.maven.it { + +public class It0030 { + public static void Main () { + new It0028(); + new It0029(); + System.Console.Write("Hello World!"); + } +} +}