Author: eworley Date: Thu Dec 27 14:45:52 2007 New Revision: 607135 URL: http://svn.apache.org/viewvc?rev=607135&view=rev Log: Adding skeleton for dotnet-test-plugin which will execute nunit tests. Adding dotnet-test-plugin module to parent pom
Added: incubator/nmaven/trunk/plugins/dotnet-test-plugin/ incubator/nmaven/trunk/plugins/dotnet-test-plugin/pom.xml incubator/nmaven/trunk/plugins/dotnet-test-plugin/src/ incubator/nmaven/trunk/plugins/dotnet-test-plugin/src/main/ incubator/nmaven/trunk/plugins/dotnet-test-plugin/src/main/java/ Modified: incubator/nmaven/trunk/plugins/pom.xml Added: incubator/nmaven/trunk/plugins/dotnet-test-plugin/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/plugins/dotnet-test-plugin/pom.xml?rev=607135&view=auto ============================================================================== --- incubator/nmaven/trunk/plugins/dotnet-test-plugin/pom.xml (added) +++ incubator/nmaven/trunk/plugins/dotnet-test-plugin/pom.xml Thu Dec 27 14:45:52 2007 @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +--> +<project 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"> + <parent> + <groupId>org.apache.maven.dotnet.plugins</groupId> + <version>0.15-incubating-SNAPSHOT</version> + <artifactId>maven-dotnet-plugins</artifactId> + </parent> + <modelVersion>4.0.0</modelVersion> + <groupId>org.apache.maven.dotnet.plugins</groupId> + <artifactId>dotnet-test-plugin</artifactId> + <packaging>maven-plugin</packaging> + <name>dotnet-test-plugin</name> + <description>Maven Plugin for .NET: Handles nunit test execution and reporting</description> + <dependencies> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-utils</artifactId> + </dependency> + </dependencies> + <distributionManagement> + <site> + <id>nmaven-apache-site</id> + <name>NMaven Site</name> + <url>file://${basedir}/../../../www/plugins/dotnet-test-plugin</url> + </site> + </distributionManagement> +</project> Modified: incubator/nmaven/trunk/plugins/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/plugins/pom.xml?rev=607135&r1=607134&r2=607135&view=diff ============================================================================== --- incubator/nmaven/trunk/plugins/pom.xml (original) +++ incubator/nmaven/trunk/plugins/pom.xml Thu Dec 27 14:45:52 2007 @@ -31,5 +31,6 @@ <name>maven-dotnet-plugins</name> <modules> <module>maven-compiler-plugin</module> + <module>dotnet-test-plugin</module> </modules> </project>