<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>ch.sahits.game</groupId>
    <artifactId>OpenPatrician</artifactId>
    <version>0.4.0</version>
	<relativePath>../pom.xml</relativePath>
  </parent>
  <artifactId>OpenPatricianMetaData</artifactId>
  <name>OpenPatrician Meta Data</name>
  <description>Containing meta data required for building and running an executable jar.</description>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.1</version>
        <configuration>
          <archive>
            <manifest>
              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
              <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
			  <mainClass>ch.sahits.game.OpenPatrician</mainClass>
            </manifest>
          </archive>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>