<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>7.3.0-m138</version>
  </parent>

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

  <name>Atlassian Bamboo Language Packs</name>

  <properties>
    <!-- default bambooDocsVersion properties are overrode by build-helper-maven-plugin:parse-version -->
    <bambooDocsVersion.majorVersion>06</bambooDocsVersion.majorVersion>
    <bambooDocsVersion.minorVersion>02</bambooDocsVersion.minorVersion>
  </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>bambooDocsVersion</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>
