<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>com.atlassian.bamboo</groupId>
    <artifactId>atlassian-bamboo-plugins2-parent</artifactId>
    <version>5.7-OD-05-009</version>
    <!-- this should stay here until this module is moved under bamboo-plugins2 -->
    <relativePath>../../bamboo-plugins2/pom.xml</relativePath>
  </parent>

  <groupId>com.atlassian.bamboo.plugins.testresultparser</groupId>
  <artifactId>atlassian-bamboo-plugin-testresultparser</artifactId>
  <version>5.7-OD-05-009</version>
  <packaging>atlassian-plugin</packaging>

  <name>Atlassian Bamboo Test Result Processing Plugin</name>
  <description>Test Result Processing Task For Bamboo</description>
  <url>http://www.atlassian.com/software/bamboo/</url>

  <properties>
    <atlassian.plugin.key>com.atlassian.bamboo.plugins.testresultparser</atlassian.plugin.key>
    <atlassian.product.version>${project.version}</atlassian.product.version>
    <atlassian.product.data.version>3.2.2</atlassian.product.data.version>
  </properties>

  <dependencies>
    <dependency>
      <groupId>com.atlassian.bamboo</groupId>
      <artifactId>atlassian-bamboo-api</artifactId>
    </dependency>
    <dependency>
      <groupId>com.atlassian.bamboo</groupId>
      <artifactId>atlassian-bamboo-web</artifactId>
    </dependency>

    <dependency>
      <groupId>org.codehaus.woodstox</groupId>
      <artifactId>woodstox-core-asl</artifactId>
    </dependency>

    <dependency>
      <groupId>org.codehaus.staxmate</groupId>
      <artifactId>staxmate</artifactId>
    </dependency>

    <dependency>
      <groupId>com.atlassian.bamboo</groupId>
      <artifactId>atlassian-bamboo-test-utils</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>com.atlassian.maven.plugins</groupId>
        <artifactId>maven-bamboo-plugin</artifactId>
        <extensions>true</extensions>
        <configuration>
          <productVersion>${atlassian.product.version}</productVersion>
          <productDataVersion>${atlassian.product.data.version}</productDataVersion>
          <systemPropertyVariables>
            <xvfb.enable>${xvfb.enable}</xvfb.enable>
          </systemPropertyVariables>
        </configuration>
      </plugin>
    </plugins>
  </build>

</project>
