<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.3</version>
  </parent>
  <artifactId>jira-lang-default</artifactId>
  <name>Atlassian JIRA - default</name>
    <build>
        <plugins>
            <plugin>
                <groupId>com.atlassian.properties.check</groupId>
                <artifactId>properties-check-maven-plugin</artifactId>
                <version>0.1</version>
                <executions>
                    <execution>
                        <phase>process-resources</phase>
                        <goals>
                            <goal>check</goal>
                        </goals>
                        <configuration>
                            <fileset>
                                <directory>${project.build.outputDirectory}/com/atlassian/jira/web/action</directory>
                                <include>*.properties</include>
                            </fileset>
                            <checks>
                                <check>
                                    <name>empty value check</name>
                                </check>
                                <check>
                                    <name>line end check</name>
                                </check>
                                <check>
                                    <name>messageformat check</name>
                                </check>
                                <check>
                                    <name>empty key check</name>
                                </check>
                                <check>
                                    <name>duplicate key check</name>
                                </check>
                                <check>
                                    <name>placeholder check</name>
                                </check>
                                <check>
                                    <name>invalid char check</name>
                                </check>
                            </checks>                            
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>
