<?xml version="1.0" encoding="UTF-8"?>
<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.8-m23</version>
  </parent>

  <groupId>com.atlassian.bamboo.plugins</groupId>
  <artifactId>atlassian-bamboo-plugin-web-resources</artifactId>
  <packaging>atlassian-plugin</packaging>

  <name>Atlassian Bamboo Web Resources Plugin</name>
  <description>Atlassian Bamboo Web Resources Plugin</description>

  <properties>
    <!-- to simplify referencing in other plugins -->
    <atlassian.plugin.key>bamboo.web.resources.common</atlassian.plugin.key>
  </properties>

  <build>
    <plugins>
      <plugin>
        <groupId>com.atlassian.maven.plugins</groupId>
        <artifactId>maven-bamboo-plugin</artifactId>
        <extensions>true</extensions>
        <configuration>
          <compressResources>false</compressResources>
        </configuration>
      </plugin>
    </plugins>

    <!-- workaround for missing feature in AMPS-4.1 -->
    <testResources>
      <testResource>
        <directory>src/test/resources</directory>
        <filtering>true</filtering>
        <includes>
          <include>atlassian-plugin.xml</include>
        </includes>
      </testResource>
      <testResource>
        <directory>src/test/resources</directory>
        <filtering>false</filtering>
        <excludes>
          <exclude>atlassian-plugin.xml</exclude>
        </excludes>
      </testResource>
    </testResources>

  </build>
</project>
