<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>org.jvnet.hudson.plugins</groupId>
	<artifactId>plugin</artifactId>
	<version>1.279</version>
	<relativePath>../pom.xml</relativePath>
 </parent>
	
  <groupId>org.jvnet.hudson.plugins</groupId>
  <artifactId>mstest</artifactId>
  <packaging>hpi</packaging>
  <name>Hudson MSTest plugin</name>
  <description>Generates test reports for MSTest.</description>
  <version>0.1</version>
  
  <properties>
    <!-- which version of Hudson is this plugin built against? -->
    <hudson.version>1.270</hudson.version>
  </properties>

  <dependencies>
    <dependency>
		<groupId>org.jmock</groupId>
		<artifactId>jmock-legacy</artifactId>
		<version>2.2.0</version>
		<scope>test</scope>
    </dependency>    
	<dependency>
		<groupId>xmlunit</groupId>
		<artifactId>xmlunit</artifactId>
		<version>1.1</version>
		<scope>test</scope>
	</dependency>
	<dependency>
		<groupId>junit</groupId>
		<artifactId>junit</artifactId>
		<version>4.3</version>
		<scope>test</scope>
	</dependency>
	<dependency>
		<groupId>cglib</groupId>
		<artifactId>cglib</artifactId>
		<version>2.2</version>
		<scope>test</scope>
	</dependency>	
  </dependencies>

  <scm>
    <connection>scm:svn:https://guest@svn.dev.java.net/svn/hudson/tags/mstest-0.1</connection>
    <developerConnection>scm:svn:https://svn.dev.java.net/svn/hudson/tags/mstest-0.1</developerConnection>
    <url>https://hudson.dev.java.net/source/browse/hudson/hudson/plugins/mstest/tags/mstest-0.1</url>
  </scm>
</project>