2010-12-19 22:03:12 +00:00
|
|
|
<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>org.mage</groupId>
|
|
|
|
<artifactId>mage-root</artifactId>
|
2012-02-03 04:48:25 +00:00
|
|
|
<version>0.8.3</version>
|
2010-12-19 22:03:12 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>Mage-Tests</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Mage Tests</name>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
2011-11-05 08:42:28 +00:00
|
|
|
<artifactId>mage</artifactId>
|
2010-12-19 22:03:12 +00:00
|
|
|
<version>${mage-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
2011-11-05 08:42:28 +00:00
|
|
|
<artifactId>mage-common</artifactId>
|
2010-12-19 22:03:12 +00:00
|
|
|
<version>${mage-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
2011-11-05 08:42:28 +00:00
|
|
|
<artifactId>mage-sets</artifactId>
|
2010-12-19 22:03:12 +00:00
|
|
|
<version>${mage-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
2011-11-05 08:42:28 +00:00
|
|
|
<artifactId>mage-server</artifactId>
|
2010-12-19 22:03:12 +00:00
|
|
|
<version>${mage-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.8.2</version>
|
|
|
|
</dependency>
|
2011-02-10 15:38:44 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
2011-11-05 08:42:28 +00:00
|
|
|
<artifactId>mage-game-twoplayerduel</artifactId>
|
2011-02-10 15:38:44 +00:00
|
|
|
<version>${project.version}</version>
|
2011-05-07 15:33:02 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
2011-11-05 08:42:28 +00:00
|
|
|
<artifactId>mage-player-ai</artifactId>
|
2011-05-07 15:33:02 +00:00
|
|
|
<version>${project.version}</version>
|
2011-02-10 15:38:44 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2010-12-19 22:03:12 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<version>1.2.14</version>
|
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.0.2</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
|
|
|
|
<finalName>mage-tests</finalName>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties/>
|
|
|
|
|
|
|
|
</project>
|