<project xmlns="http://maven.apache.org/POM/4.0.0"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.atlassian.jira</groupId>
        <artifactId>jira-languages</artifactId>
        <version>4.4-m6-studio-1</version>
    </parent>
    <artifactId>jira-lang-en_UK</artifactId>
    <name>Atlassian JIRA - Language Packs - en_UK</name>
    <build>
        <plugins>
            <plugin>
                <artifactId>maven-antrun-plugin</artifactId>
                <executions>
                    <execution>
                        <id>move-uk-languages</id>
                        <phase>generate-resources</phase>
                        <goals>
                            <goal>run</goal>
                        </goals>
                        <configuration>
                            <tasks>
                                <copy file="${project.basedir}/../../jira-core/src/main/resources/com/atlassian/jira/web/action/JiraWebActionSupport.properties" tofile="${project.build.outputDirectory}/com/atlassian/jira/web/action/JiraWebActionSupport_en_UK.properties" overwrite="true"/>
                            </tasks>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>
