<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> <version>1.3.0</version> </parent> <artifactId>mage-tests</artifactId> <packaging>jar</packaging> <name>Mage Tests</name> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>mage</artifactId> <version>${mage-version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>mage-common</artifactId> <version>${mage-version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>mage-sets</artifactId> <version>${mage-version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>mage-server</artifactId> <version>${mage-version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>mage-game-twoplayerduel</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>mage-player-ai</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <type>jar</type> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.16</version> <configuration> <argLine>-XX:MaxPermSize=512m</argLine> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> </plugins> </pluginManagement> <finalName>mage-tests</finalName> </build> <properties/> </project>