<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-components</artifactId>
    <version>6.1.0-m133</version>
  </parent>

  <artifactId>atlassian-bamboo-language</artifactId>
  <packaging>jar</packaging>

  <name>Atlassian Bamboo Language Packs</name>

  <properties>
    <!-- formattedVersion properties are defined by build-helper-maven-plugin:parse-version -->
    <bamboo.docs.version>${formattedVersion.majorVersion}${formattedVersion.minorVersion}</bamboo.docs.version>
  </properties>

  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
        <executions>
          <execution>
            <id>parse-version</id>
            <goals>
              <goal>parse-version</goal>
            </goals>
            <configuration>
              <formattedPropertyPrefix>formattedVersion</formattedPropertyPrefix>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
    <resources>
      <resource>
        <directory>src/main/resources</directory>
        <filtering>true</filtering>
        <includes>
          <include>help-paths.properties</include>
        </includes>
      </resource>
      <resource>
        <directory>src/main/resources</directory>
        <filtering>false</filtering>
        <excludes>
          <exclude>help-paths.properties</exclude>
        </excludes>
      </resource>
    </resources>
  </build>
</project>
