<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.5.1</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</groupId>
  <artifactId>atlassian-bamboo-plugin-navlinks</artifactId>
  <version>5.5.1</version>
  <packaging>atlassian-plugin</packaging>

  <name>Atlassian Bamboo Navlinks Plugin</name>
  <description>Navlinks From Bamboo</description>
  <url>http://www.atlassian.com/software/bamboo/</url>

  <properties>
    <atlassian.plugin.key>com.atlassian.bamboo.navlinks</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>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.atlassian.plugins</groupId>
      <artifactId>atlassian-nav-links-spi</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
        <groupId>com.atlassian.plugins</groupId>
        <artifactId>atlassian-nav-links-api</artifactId>
        <scope>provided</scope>
    </dependency>

    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>com.atlassian.maven.plugins</groupId>
        <artifactId>maven-bamboo-plugin</artifactId>
        <configuration>
          <productVersion>${atlassian.product.version}</productVersion>
          <productDataVersion>${atlassian.product.data.version}</productDataVersion>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
