Modified: incubator/nmaven/trunk/core-integration-tests/src/test/resources/MavenITmng-0017-CSharpStrongNamedAssembly/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/core-integration-tests/src/test/resources/MavenITmng-0017-CSharpStrongNamedAssembly/pom.xml?rev=698844&r1=698843&r2=698844&view=diff ============================================================================== --- incubator/nmaven/trunk/core-integration-tests/src/test/resources/MavenITmng-0017-CSharpStrongNamedAssembly/pom.xml (original) +++ incubator/nmaven/trunk/core-integration-tests/src/test/resources/MavenITmng-0017-CSharpStrongNamedAssembly/pom.xml Thu Sep 25 00:17:40 2008 @@ -17,7 +17,9 @@ specific language governing permissions and limitations under the License. --> -<project> +<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.Its</groupId> <artifactId>NMaven.It.It0017</artifactId> @@ -30,11 +32,17 @@ <plugin> <groupId>org.apache.maven.dotnet.plugins</groupId> <artifactId>maven-dotnet-compiler-plugin</artifactId> + <version>${nmaven.version}</version> <extensions>true</extensions> <configuration> <keyfile>sample.snk</keyfile> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.dotnet.plugins</groupId> + <artifactId>maven-dotnet-test-plugin</artifactId> + <version>${nmaven.version}</version> + </plugin> </plugins> </build> </project>
Modified: incubator/nmaven/trunk/core-integration-tests/src/test/resources/MavenITmng-0018-CSharpSynchronizeTargetWithSource/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/core-integration-tests/src/test/resources/MavenITmng-0018-CSharpSynchronizeTargetWithSource/pom.xml?rev=698844&r1=698843&r2=698844&view=diff ============================================================================== --- incubator/nmaven/trunk/core-integration-tests/src/test/resources/MavenITmng-0018-CSharpSynchronizeTargetWithSource/pom.xml (original) +++ incubator/nmaven/trunk/core-integration-tests/src/test/resources/MavenITmng-0018-CSharpSynchronizeTargetWithSource/pom.xml Thu Sep 25 00:17:40 2008 @@ -17,7 +17,9 @@ specific language governing permissions and limitations under the License. --> -<project> +<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.Its</groupId> <artifactId>NMaven.It.It0018</artifactId> @@ -31,8 +33,23 @@ <plugin> <groupId>org.apache.maven.dotnet.plugins</groupId> <artifactId>maven-dotnet-compiler-plugin</artifactId> + <version>${nmaven.version}</version> <extensions>true</extensions> </plugin> + <plugin> + <groupId>org.apache.maven.dotnet.plugins</groupId> + <artifactId>maven-dotnet-test-plugin</artifactId> + <version>${nmaven.version}</version> + </plugin> </plugins> </build> + <dependencies> + <dependency> + <groupId>NUnit</groupId> + <artifactId>NUnit.Framework</artifactId> + <version>2.2.8.0</version> + <type>dotnet:library</type> + <scope>test</scope> + </dependency> + </dependencies> </project> Modified: incubator/nmaven/trunk/core-integration-tests/src/test/resources/MavenITmng-0019-BuildFailureOnNUnitFailure/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/core-integration-tests/src/test/resources/MavenITmng-0019-BuildFailureOnNUnitFailure/pom.xml?rev=698844&r1=698843&r2=698844&view=diff ============================================================================== --- incubator/nmaven/trunk/core-integration-tests/src/test/resources/MavenITmng-0019-BuildFailureOnNUnitFailure/pom.xml (original) +++ incubator/nmaven/trunk/core-integration-tests/src/test/resources/MavenITmng-0019-BuildFailureOnNUnitFailure/pom.xml Thu Sep 25 00:17:40 2008 @@ -17,7 +17,9 @@ specific language governing permissions and limitations under the License. --> -<project> +<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.Its</groupId> <artifactId>NMaven.It.It0019</artifactId> @@ -32,11 +34,13 @@ <plugin> <groupId>org.apache.maven.dotnet.plugins</groupId> <artifactId>maven-dotnet-compiler-plugin</artifactId> + <version>${nmaven.version}</version> <extensions>true</extensions> </plugin> <plugin> <groupId>org.apache.maven.dotnet.plugins</groupId> <artifactId>maven-dotnet-test-plugin</artifactId> + <version>${nmaven.version}</version> <configuration> <arguments> <param>/nologo</param> @@ -48,22 +52,11 @@ </build> <dependencies> <dependency> - <groupId>org.apache.maven.dotnet</groupId> + <groupId>NUnit</groupId> <artifactId>NUnit.Framework</artifactId> - <version>2.4.6-incubating-SNAPSHOT</version> + <version>2.2.8.0</version> <type>dotnet:library</type> <scope>test</scope> </dependency> </dependencies> - - <repositories> - <repository> - <id>m2-snapshot</id> - <name>Maven2 Snapshot Repository</name> - <url>http://people.apache.org/repo/m2-snapshot-repository/</url> - <snapshots> - <enabled>true</enabled> - </snapshots> - </repository> - </repositories> </project> Modified: incubator/nmaven/trunk/core-integration-tests/src/test/resources/MavenITmng-0020-ShareTestSource/A/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/core-integration-tests/src/test/resources/MavenITmng-0020-ShareTestSource/A/pom.xml?rev=698844&r1=698843&r2=698844&view=diff ============================================================================== --- incubator/nmaven/trunk/core-integration-tests/src/test/resources/MavenITmng-0020-ShareTestSource/A/pom.xml (original) +++ incubator/nmaven/trunk/core-integration-tests/src/test/resources/MavenITmng-0020-ShareTestSource/A/pom.xml Thu Sep 25 00:17:40 2008 @@ -17,8 +17,15 @@ specific language governing permissions and limitations under the License. --> -<project> +<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> + <parent> + <groupId>NMaven.Its</groupId> + <artifactId>NMaven.It.It0020</artifactId> + <version>1.0.0</version> + </parent> <groupId>NMaven.Its</groupId> <artifactId>NMaven.It.It0020A</artifactId> <packaging>dotnet:library</packaging> @@ -32,11 +39,13 @@ <plugin> <groupId>org.apache.maven.dotnet.plugins</groupId> <artifactId>maven-dotnet-compiler-plugin</artifactId> + <version>${nmaven.version}</version> <extensions>true</extensions> </plugin> <plugin> <groupId>org.apache.maven.dotnet.plugins</groupId> <artifactId>maven-dotnet-test-plugin</artifactId> + <version>${nmaven.version}</version> <configuration> <arguments> <param>/nologo</param> @@ -50,7 +59,7 @@ <dependency> <groupId>org.apache.maven.dotnet</groupId> <artifactId>NUnit.Framework</artifactId> - <version>2.4.6-incubating-SNAPSHOT</version> + <version>2.4.8.0</version> <type>dotnet:library</type> <scope>test</scope> </dependency> @@ -63,15 +72,4 @@ <type>dotnet:library</type> </dependency> </dependencies> - - <repositories> - <repository> - <id>m2-snapshot</id> - <name>Maven2 Snapshot Repository</name> - <url>http://people.apache.org/repo/m2-snapshot-repository/</url> - <snapshots> - <enabled>true</enabled> - </snapshots> - </repository> - </repositories> </project> Modified: incubator/nmaven/trunk/core-integration-tests/src/test/resources/MavenITmng-0020-ShareTestSource/B/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/core-integration-tests/src/test/resources/MavenITmng-0020-ShareTestSource/B/pom.xml?rev=698844&r1=698843&r2=698844&view=diff ============================================================================== --- incubator/nmaven/trunk/core-integration-tests/src/test/resources/MavenITmng-0020-ShareTestSource/B/pom.xml (original) +++ incubator/nmaven/trunk/core-integration-tests/src/test/resources/MavenITmng-0020-ShareTestSource/B/pom.xml Thu Sep 25 00:17:40 2008 @@ -17,8 +17,15 @@ specific language governing permissions and limitations under the License. --> -<project> +<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> + <parent> + <groupId>NMaven.Its</groupId> + <artifactId>NMaven.It.It0020</artifactId> + <version>1.0.0</version> + </parent> <groupId>NMaven.Its</groupId> <artifactId>NMaven.It.It0020B</artifactId> <packaging>dotnet:library</packaging> @@ -32,11 +39,13 @@ <plugin> <groupId>org.apache.maven.dotnet.plugins</groupId> <artifactId>maven-dotnet-compiler-plugin</artifactId> + <version>${nmaven.version}</version> <extensions>true</extensions> </plugin> <plugin> <groupId>org.apache.maven.dotnet.plugins</groupId> <artifactId>maven-dotnet-test-plugin</artifactId> + <version>${nmaven.version}</version> <configuration> <arguments> <param>/nologo</param> @@ -48,22 +57,11 @@ </build> <dependencies> <dependency> - <groupId>org.apache.maven.dotnet</groupId> + <groupId>NUnit</groupId> <artifactId>NUnit.Framework</artifactId> - <version>2.4.6-incubating-SNAPSHOT</version> + <version>2.2.8.0</version> <type>dotnet:library</type> <scope>test</scope> </dependency> </dependencies> - - <repositories> - <repository> - <id>m2-snapshot</id> - <name>Maven2 Snapshot Repository</name> - <url>http://people.apache.org/repo/m2-snapshot-repository/</url> - <snapshots> - <enabled>true</enabled> - </snapshots> - </repository> - </repositories> </project>