mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
32 lines
1 KiB
XML
32 lines
1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>
|
|
|
|
<groupId>org.mage</groupId>
|
|
<artifactId>mage-root</artifactId>
|
|
<version>${mage-version}</version>
|
|
<packaging>pom</packaging>
|
|
<name>Mage Root</name>
|
|
<description>Mage Root POM</description>
|
|
|
|
<modules>
|
|
<module>Mage</module>
|
|
<module>Mage.Common</module>
|
|
<module>Mage.Server</module>
|
|
<module>Mage.Sets</module>
|
|
<module>Mage.Client</module>
|
|
<module>Mage.Deck.Constructed</module>
|
|
<module>Mage.Game.FreeForAll</module>
|
|
<module>Mage.Game.TwoPlayerDuel</module>
|
|
<module>Mage.Player.AI</module>
|
|
<module>Mage.Player.AIMinimax</module>
|
|
<module>Mage.Player.Human</module>
|
|
<module>Mage.Plugins</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<mage-version>0.3</mage-version>
|
|
</properties>
|
|
</project>
|