<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>
		<artifactId>OpenPatricianGraphic</artifactId>
		<groupId>ch.sahits.game</groupId>
		<version>0.0.2</version>
	</parent>
	<artifactId>OpenPatricianDisplay</artifactId>
	<dependencies>
		<dependency>
			<groupId>ch.sahits.game</groupId>
			<artifactId>OpenPatricianImage</artifactId>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>ch.sahits.game</groupId>
			<artifactId>OpenPatricianSound</artifactId>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.easymock</groupId>
			<artifactId>easymock</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>ch.sahits.game</groupId>
			<artifactId>OpenPatricianModel</artifactId>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>ch.sahits.game</groupId>
			<artifactId>Rendering</artifactId>
		</dependency>
		<dependency>
			<groupId>ch.sahits.game</groupId>
			<artifactId>OpenPatricianGameEvent</artifactId>
		</dependency>
		<dependency>
			<groupId>ch.sahits.game</groupId>
			<artifactId>OpenPatricianClientServerInterface</artifactId>
		</dependency>
		<dependency>
			<groupId>ch.sahits.game</groupId>
			<artifactId>OpenPatricianServer</artifactId>
		</dependency>
		<dependency>
			<groupId>ch.sahits</groupId>
			<artifactId>sahitsUtil</artifactId>
		</dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
		</dependency>
	</dependencies>
	<build>
	<plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <includes>
            <exclude>**/*.xcf</exclude><!-- exclude gimp sources -->
          </includes>
        </configuration>
      </plugin>
	</plugins>
	</build>
</project>