cleaning pom.xml, version bump to 0.5

This commit is contained in:
Loki 2010-12-02 09:14:18 +00:00
parent 3384d27ea8
commit 592ba955f0
24 changed files with 726 additions and 746 deletions

View file

@ -6,31 +6,29 @@
<parent> <parent>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>mage-root</artifactId> <artifactId>mage-root</artifactId>
<version>0.3</version> <version>0.5</version>
</parent> </parent>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>Mage-Client</artifactId> <artifactId>Mage-Client</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>0.3</version> <name>Mage Client</name>
<name>Mage Client</name>
<url>http://maven.apache.org</url>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>Mage</artifactId> <artifactId>Mage</artifactId>
<version>${mage-version}</version> <version>${project.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>Mage-Common</artifactId> <artifactId>Mage-Common</artifactId>
<version>${mage-version}</version> <version>${project.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>Mage-Sets</artifactId> <artifactId>Mage-Sets</artifactId>
<version>${mage-version}</version> <version>${project.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.googlecode.jspf</groupId> <groupId>com.googlecode.jspf</groupId>
@ -109,6 +107,7 @@
<plugin> <plugin>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<configuration> <configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptors> <descriptors>
<descriptor>src/main/assembly/distribution.xml</descriptor> <descriptor>src/main/assembly/distribution.xml</descriptor>
</descriptors> </descriptors>

View file

@ -4,4 +4,4 @@ set JAVA_HOME="C:\Program Files\Java\jre6"
set CLASSPATH=%JAVA_HOME%/bin;%CLASSPATH% set CLASSPATH=%JAVA_HOME%/bin;%CLASSPATH%
set PATH=%JAVA_HOME%/bin;%PATH% set PATH=%JAVA_HOME%/bin;%PATH%
:NOJAVADIR :NOJAVADIR
start javaw -jar .\MageClient.jar start javaw -jar .\MageClient-${project.version}.jar

View file

@ -20,11 +20,15 @@
</dependencySets> </dependencySets>
<fileSets> <fileSets>
<fileSet> <fileSet>
<filtered>true</filtered>
<directory>release/</directory> <directory>release/</directory>
<outputDirectory>/</outputDirectory> <outputDirectory>/</outputDirectory>
</fileSet> </fileSet>
<fileSet> <fileSet>
<directory>plugins/*.jar</directory> <directory>plugins/</directory>
<includes>
<include>*.jar</include>
</includes>
<outputDirectory>plugins/</outputDirectory> <outputDirectory>plugins/</outputDirectory>
</fileSet> </fileSet>
</fileSets> </fileSets>

View file

@ -1,60 +1,58 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>mage-root</artifactId> <artifactId>mage-root</artifactId>
<version>0.3</version> <version>0.5</version>
</parent> </parent>
<groupId>org.mage</groupId>
<artifactId>Mage-Common</artifactId>
<packaging>jar</packaging>
<version>0.3</version>
<name>Mage Common Classes</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>org.mage</groupId>
<artifactId>Mage</artifactId>
<version>${mage-version}</version>
</dependency>
<dependency>
<groupId>com.googlecode.jspf</groupId>
<artifactId>jspf-core</artifactId>
<version>${jspf-version}</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<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>
<version>2.4.3</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
<finalName>mage-common</finalName> <artifactId>Mage-Common</artifactId>
</build> <packaging>jar</packaging>
<name>Mage Common Classes</name>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>Mage</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.googlecode.jspf</groupId>
<artifactId>jspf-core</artifactId>
<version>${jspf-version}</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<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>
<version>2.4.3</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
<finalName>mage-common</finalName>
</build>
<properties> <properties>
<jspf-version>0.9.1</jspf-version> <jspf-version>0.9.1</jspf-version>
</properties> </properties>
</project> </project>

View file

@ -1,52 +1,50 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>mage-root</artifactId> <artifactId>mage-root</artifactId>
<version>0.3</version> <version>0.5</version>
</parent> </parent>
<groupId>org.mage</groupId>
<artifactId>Mage-Deck-Constructed</artifactId>
<packaging>jar</packaging>
<version>0.3</version>
<name>Mage Deck Constructed</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>org.mage</groupId>
<artifactId>Mage</artifactId>
<version>${mage-version}</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<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-deck-constructed</finalName> <artifactId>Mage-Deck-Constructed</artifactId>
</build> <packaging>jar</packaging>
<name>Mage Deck Constructed</name>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>Mage</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<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-deck-constructed</finalName>
</build>
<properties/> <properties/>
</project> </project>

View file

@ -1,52 +1,50 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>mage-root</artifactId> <artifactId>mage-root</artifactId>
<version>0.3</version> <version>0.5</version>
</parent> </parent>
<groupId>org.mage</groupId>
<artifactId>Mage-Game-FreeForAll</artifactId>
<packaging>jar</packaging>
<version>0.3</version>
<name>Mage Game Free For All</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>org.mage</groupId>
<artifactId>Mage</artifactId>
<version>${mage-version}</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<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> <artifactId>Mage-Game-FreeForAll</artifactId>
<packaging>jar</packaging>
<name>Mage Game Free For All</name>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>Mage</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<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-game-freeforall</finalName> <finalName>mage-game-freeforall</finalName>
</build> </build>
<properties/> <properties/>
</project> </project>

View file

@ -1,53 +1,51 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>mage-root</artifactId> <artifactId>mage-root</artifactId>
<version>0.3</version> <version>0.5</version>
</parent> </parent>
<groupId>org.mage</groupId>
<artifactId>Mage-Game-TwoPlayerDuel</artifactId>
<packaging>jar</packaging>
<version>0.3</version>
<name>Mage Game Two Player</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>org.mage</groupId>
<artifactId>Mage</artifactId>
<version>${mage-version}</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<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> <artifactId>Mage-Game-TwoPlayerDuel</artifactId>
<packaging>jar</packaging>
<name>Mage Game Two Player</name>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>Mage</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<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-game-twoplayerduel</finalName> <finalName>mage-game-twoplayerduel</finalName>
</build> </build>
<properties/> <properties/>
</project> </project>

View file

@ -1,53 +1,51 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>mage-root</artifactId> <artifactId>mage-root</artifactId>
<version>0.3</version> <version>0.5</version>
</parent> </parent>
<groupId>org.mage</groupId> <artifactId>Mage-Player-AI</artifactId>
<artifactId>Mage-Player-AI</artifactId> <packaging>jar</packaging>
<packaging>jar</packaging> <name>Mage Player AI</name>
<version>0.3</version>
<name>Mage Player AI</name>
<url>http://maven.apache.org</url>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.mage</groupId> <groupId>${project.groupId}</groupId>
<artifactId>Mage</artifactId> <artifactId>Mage</artifactId>
<version>${mage-version}</version> <version>${project.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<sourceDirectory>src</sourceDirectory> <sourceDirectory>src</sourceDirectory>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version> <version>2.0.2</version>
<configuration> <configuration>
<source>1.6</source> <source>1.6</source>
<target>1.6</target> <target>1.6</target>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-resources-plugin</artifactId> <artifactId>maven-resources-plugin</artifactId>
<configuration> <configuration>
<encoding>UTF-8</encoding> <encoding>UTF-8</encoding>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
<finalName>mage-player-ai</finalName> <finalName>mage-player-ai</finalName>
</build> </build>
<properties/> <properties/>
</project> </project>

View file

@ -1,58 +1,56 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>mage-root</artifactId> <artifactId>mage-root</artifactId>
<version>0.3</version> <version>0.5</version>
</parent> </parent>
<groupId>org.mage</groupId> <artifactId>Mage-Player-AIMinimax</artifactId>
<artifactId>Mage-Player-AIMinimax</artifactId> <packaging>jar</packaging>
<packaging>jar</packaging> <name>Mage Player AI Minimax</name>
<version>0.3</version>
<name>Mage Player AI Minimax</name>
<url>http://maven.apache.org</url>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.mage</groupId> <groupId>${project.groupId}</groupId>
<artifactId>Mage</artifactId> <artifactId>Mage</artifactId>
<version>${mage-version}</version> <version>${project.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mage</groupId> <groupId>${project.groupId}</groupId>
<artifactId>Mage-Player-AI</artifactId> <artifactId>Mage-Player-AI</artifactId>
<version>${mage-version}</version> <version>${project.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<sourceDirectory>src</sourceDirectory> <sourceDirectory>src</sourceDirectory>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version> <version>2.0.2</version>
<configuration> <configuration>
<source>1.6</source> <source>1.6</source>
<target>1.6</target> <target>1.6</target>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-resources-plugin</artifactId> <artifactId>maven-resources-plugin</artifactId>
<configuration> <configuration>
<encoding>UTF-8</encoding> <encoding>UTF-8</encoding>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
<finalName>mage-player-aiminimax</finalName> <finalName>mage-player-aiminimax</finalName>
</build> </build>
<properties/> <properties/>
</project> </project>

View file

@ -1,53 +1,51 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>mage-root</artifactId> <artifactId>mage-root</artifactId>
<version>0.3</version> <version>0.5</version>
</parent> </parent>
<groupId>org.mage</groupId> <artifactId>Mage-Player-Human</artifactId>
<artifactId>Mage-Player-Human</artifactId> <packaging>jar</packaging>
<packaging>jar</packaging> <name>Mage Player Human</name>
<version>0.3</version>
<name>Mage Player Human</name>
<url>http://maven.apache.org</url>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>Mage</artifactId> <artifactId>Mage</artifactId>
<version>${mage-version}</version> <version>${project.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<sourceDirectory>src</sourceDirectory> <sourceDirectory>src</sourceDirectory>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version> <version>2.0.2</version>
<configuration> <configuration>
<source>1.6</source> <source>1.6</source>
<target>1.6</target> <target>1.6</target>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-resources-plugin</artifactId> <artifactId>maven-resources-plugin</artifactId>
<configuration> <configuration>
<encoding>UTF-8</encoding> <encoding>UTF-8</encoding>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
<finalName>mage-player-human</finalName> <finalName>mage-player-human</finalName>
</build> </build>
<properties/> <properties/>
</project> </project>

View file

@ -1,76 +1,76 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>Mage-Plugins</artifactId> <artifactId>Mage-Plugins</artifactId>
<version>0.3</version> <version>0.5</version>
</parent> </parent>
<artifactId>Mage-Card-Plugin</artifactId>
<packaging>jar</packaging>
<version>${plugin-version}</version>
<name>Mage Card Plugin</name>
<description>Plugin for drawing card</description>
<groupId>org.mage</groupId> <dependencies>
<artifactId>Mage-Card-Plugin</artifactId> <dependency>
<packaging>jar</packaging> <groupId>${project.groupId}</groupId>
<version>${plugin-version}</version> <artifactId>Mage-Common</artifactId>
<name>Mage Card Plugin</name> <version>${mage-version}</version>
<description>Plugin for drawing card</description> </dependency>
<dependency>
<groupId>com.googlecode.jspf</groupId>
<artifactId>jspf-core</artifactId>
<version>${jspf-version}</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.9</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.collections</groupId>
<artifactId>google-collections</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.mortennobel</groupId>
<artifactId>java-image-scaling</artifactId>
<version>0.8.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jetlang</groupId>
<artifactId>jetlang</artifactId>
<version>0.2.4</version>
<scope>provided</scope>
</dependency>
</dependencies>
<dependencies> <build>
<dependency> <plugins>
<groupId>org.mage</groupId> <plugin>
<artifactId>Mage-Common</artifactId> <groupId>org.apache.maven.plugins</groupId>
<version>${mage-version}</version> <artifactId>maven-compiler-plugin</artifactId>
</dependency> <configuration>
<dependency> <source>1.6</source>
<groupId>com.googlecode.jspf</groupId> <target>1.6</target>
<artifactId>jspf-core</artifactId> </configuration>
<version>${jspf-version}</version> </plugin>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.9</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.collections</groupId>
<artifactId>google-collections</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.mortennobel</groupId>
<artifactId>java-image-scaling</artifactId>
<version>0.8.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jetlang</groupId>
<artifactId>jetlang</artifactId>
<version>0.2.4</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins> </plugins>
<finalName>mage-card-plugin</finalName> <finalName>mage-card-plugin</finalName>
</build> </build>
<properties> <properties>
<plugin-version>0.3</plugin-version> <plugin-version>0.3</plugin-version>
<jspf-version>0.9.1</jspf-version> <jspf-version>0.9.1</jspf-version>
</properties> </properties>
</project> </project>

View file

@ -1,58 +1,57 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>Mage-Plugins</artifactId> <artifactId>Mage-Plugins</artifactId>
<version>0.3</version> <version>0.5</version>
</parent> </parent>
<artifactId>Mage-Counter-Plugin</artifactId>
<packaging>jar</packaging>
<name>Mage Counter Plugin</name>
<description>Implements game counter to display amount of games played</description>
<groupId>org.mage</groupId> <dependencies>
<artifactId>Mage-Counter-Plugin</artifactId> <dependency>
<packaging>jar</packaging> <groupId>${project.groupId}</groupId>
<version>0.3</version> <artifactId>Mage-Common</artifactId>
<name>Mage Counter Plugin</name> <version>${project.version}</version>
<description>Implements game counter to display amount of games played</description> </dependency>
<dependency>
<groupId>com.googlecode.jspf</groupId>
<artifactId>jspf-core</artifactId>
<version>${jspf-version}</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.9</version>
<scope>provided</scope>
</dependency>
</dependencies>
<dependencies> <build>
<dependency> <plugins>
<groupId>org.mage</groupId> <plugin>
<artifactId>Mage-Common</artifactId> <groupId>org.apache.maven.plugins</groupId>
<version>${mage-version}</version> <artifactId>maven-compiler-plugin</artifactId>
</dependency> <configuration>
<dependency> <source>1.6</source>
<groupId>com.googlecode.jspf</groupId> <target>1.6</target>
<artifactId>jspf-core</artifactId> </configuration>
<version>${jspf-version}</version> </plugin>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.9</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build> </plugins>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins> <finalName>mage-counter-plugin</finalName>
</build>
<finalName>mage-counter-plugin</finalName> <properties>
</build> <plugin-version>0.3</plugin-version>
<jspf-version>0.9.1</jspf-version>
<properties> </properties>
<plugin-version>0.3</plugin-version>
<jspf-version>0.9.1</jspf-version>
</properties>
</project> </project>

View file

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>Mage-Plugins</artifactId> <artifactId>Mage-Plugins</artifactId>
<version>0.3</version> <version>0.5</version>
</parent> </parent>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>

View file

@ -6,19 +6,17 @@
<parent> <parent>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>Mage-Plugins</artifactId> <artifactId>Mage-Plugins</artifactId>
<version>0.3</version> <version>0.5</version>
</parent> </parent>
<groupId>org.mage</groupId>
<artifactId>Mage-Theme-Plugin</artifactId> <artifactId>Mage-Theme-Plugin</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>0.3</version>
<name>Mage Theme Plugin</name> <name>Mage Theme Plugin</name>
<description>Contains resources for drawing background</description> <description>Contains resources for drawing background</description>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.mage</groupId> <groupId>${project.groupId}</groupId>
<artifactId>Mage-Common</artifactId> <artifactId>Mage-Common</artifactId>
<version>${mage-version}</version> <version>${mage-version}</version>
</dependency> </dependency>

View file

@ -1,26 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?> <?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" <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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>mage-root</artifactId> <artifactId>mage-root</artifactId>
<version>0.3</version> <version>0.5</version>
</parent> </parent>
<groupId>org.mage</groupId> <artifactId>Mage-Plugins</artifactId>
<artifactId>Mage-Plugins</artifactId> <packaging>pom</packaging>
<version>0.3</version> <name>Mage Plugins</name>
<packaging>pom</packaging> <description>Mage Plugins POM</description>
<name>Mage Plugins</name>
<description>Mage Plugins POM</description> <modules>
<module>Mage.Theme.Plugin</module>
<modules> <module>Mage.Card.Plugin</module>
<module>Mage.Theme.Plugin</module> <module>Mage.Counter.Plugin</module>
<module>Mage.Card.Plugin</module> </modules>
<module>Mage.Counter.Plugin</module>
</modules> </project>
</project>

View file

@ -6,10 +6,5 @@
# nickname - Player's name you connect to the game with # nickname - Player's name you connect to the game with
# #
# #
hand:player:Fireball:2 battlefield:player:Jace, the Mind Sculptor:1
battlefield:player:Forest:2
battlefield:player:Plains:3
battlefield:player:Brindle Boar:1
battlefield:computer:Bloodbraid Elf:1 battlefield:computer:Bloodbraid Elf:1
hand:player:Holy Strength:2
hand:player:Nest Invader:1

View file

@ -1,154 +1,152 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>mage-root</artifactId> <artifactId>mage-root</artifactId>
<version>0.3</version> <version>0.5</version>
</parent> </parent>
<groupId>org.mage</groupId> <artifactId>Mage-Server</artifactId>
<artifactId>Mage-Server</artifactId> <packaging>jar</packaging>
<packaging>jar</packaging> <name>Mage Server</name>
<version>0.3</version>
<name>Mage Server</name>
<url>http://maven.apache.org</url>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.mage</groupId> <groupId>${project.groupId}</groupId>
<artifactId>Mage</artifactId> <artifactId>Mage</artifactId>
<version>${mage-version}</version> <version>${mage-version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mage</groupId> <groupId>${project.groupId}</groupId>
<artifactId>Mage-Common</artifactId> <artifactId>Mage-Common</artifactId>
<version>${mage-version}</version> <version>${mage-version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mage</groupId> <groupId>${project.groupId}</groupId>
<artifactId>Mage-Sets</artifactId> <artifactId>Mage-Sets</artifactId>
<version>${mage-version}</version> <version>${mage-version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.sun.xml.bind</groupId> <groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId> <artifactId>jaxb-impl</artifactId>
<version>2.1.12</version> <version>2.1.12</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>log4j</groupId> <groupId>log4j</groupId>
<artifactId>log4j</artifactId> <artifactId>log4j</artifactId>
<version>1.2.14</version> <version>1.2.14</version>
<type>jar</type> <type>jar</type>
</dependency> </dependency>
<dependency> <dependency>
<groupId>${project.groupId}</groupId> <groupId>${project.groupId}</groupId>
<artifactId>Mage-Player-AI</artifactId> <artifactId>Mage-Player-AI</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>${project.groupId}</groupId> <groupId>${project.groupId}</groupId>
<artifactId>Mage-Deck-Constructed</artifactId> <artifactId>Mage-Deck-Constructed</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>${project.groupId}</groupId> <groupId>${project.groupId}</groupId>
<artifactId>Mage-Game-FreeForAll</artifactId> <artifactId>Mage-Game-FreeForAll</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>${project.groupId}</groupId> <groupId>${project.groupId}</groupId>
<artifactId>Mage-Game-TwoPlayerDuel</artifactId> <artifactId>Mage-Game-TwoPlayerDuel</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>${project.groupId}</groupId> <groupId>${project.groupId}</groupId>
<artifactId>Mage-Player-Human</artifactId> <artifactId>Mage-Player-Human</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>${project.groupId}</groupId> <groupId>${project.groupId}</groupId>
<artifactId>Mage-Player-AIMinimax</artifactId> <artifactId>Mage-Player-AIMinimax</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<pluginRepositories> <pluginRepositories>
<pluginRepository> <pluginRepository>
<id>maven2-repository.dev.java.net</id> <id>maven2-repository.dev.java.net</id>
<name>Java.net Maven 2 Repository</name> <name>Java.net Maven 2 Repository</name>
<url>http://download.java.net/maven/2</url> <url>http://download.java.net/maven/2</url>
</pluginRepository> </pluginRepository>
</pluginRepositories> </pluginRepositories>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId> <groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId> <artifactId>maven-jaxb2-plugin</artifactId>
<version>0.7.3</version> <version>0.7.3</version>
<configuration> <configuration>
<generatePackage>mage.server.util.config</generatePackage> <generatePackage>mage.server.util.config</generatePackage>
<schemaDirectory>./src/main/xml-resources/jaxb/Config/</schemaDirectory> <schemaDirectory>./src/main/xml-resources/jaxb/Config/</schemaDirectory>
<arguments>-Xcommons-lang</arguments> <arguments>-Xcommons-lang</arguments>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
<goals> <goals>
<goal>generate</goal> <goal>generate</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version> <version>2.0.2</version>
<configuration> <configuration>
<source>1.6</source> <source>1.6</source>
<target>1.6</target> <target>1.6</target>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<configuration> <configuration>
<descriptors> <appendAssemblyId>false</appendAssemblyId>
<descriptor>src/main/assembly/distribution.xml</descriptor> <descriptors>
</descriptors> <descriptor>src/main/assembly/distribution.xml</descriptor>
</configuration> </descriptors>
</plugin> </configuration>
<plugin> </plugin>
<artifactId>maven-jar-plugin</artifactId> <plugin>
<configuration> <artifactId>maven-jar-plugin</artifactId>
<archive> <configuration>
<manifest> <archive>
<addClasspath>true</addClasspath> <manifest>
<classpathPrefix>lib/</classpathPrefix> <addClasspath>true</addClasspath>
<mainClass>mage.server.Main</mainClass> <classpathPrefix>lib/</classpathPrefix>
</manifest> <mainClass>mage.server.Main</mainClass>
</archive> </manifest>
</configuration> </archive>
</plugin> </configuration>
<plugin> </plugin>
<artifactId>maven-resources-plugin</artifactId> <plugin>
<configuration> <artifactId>maven-resources-plugin</artifactId>
<encoding>UTF-8</encoding> <configuration>
</configuration> <encoding>UTF-8</encoding>
</plugin> </configuration>
</plugins> </plugin>
</plugins>
<finalName>mage-server</finalName> <finalName>mage-server</finalName>
</build> </build>
<properties/> <properties/>
</project> </project>

View file

@ -4,4 +4,4 @@ set JAVA_HOME="C:\Program Files\Java\jre6"
set CLASSPATH=%JAVA_HOME%/bin;%CLASSPATH% set CLASSPATH=%JAVA_HOME%/bin;%CLASSPATH%
set PATH=%JAVA_HOME%/bin;%PATH% set PATH=%JAVA_HOME%/bin;%PATH%
:NOJAVADIR :NOJAVADIR
start java -Djava.security.policy=./config/security.policy -Djava.util.logging.config.file=./config/logging.config -jar ./MageServer.jar start java -Djava.security.policy=./config/security.policy -Djava.util.logging.config.file=./config/logging.config -jar ./MageServer-${project.version}.jar

View file

@ -31,6 +31,7 @@
</dependencySets> </dependencySets>
<fileSets> <fileSets>
<fileSet> <fileSet>
<filtered>true</filtered>
<directory>release/</directory> <directory>release/</directory>
<outputDirectory>/</outputDirectory> <outputDirectory>/</outputDirectory>
</fileSet> </fileSet>

View file

@ -1,53 +1,53 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>mage-root</artifactId> <artifactId>mage-root</artifactId>
<version>0.3</version> <version>0.5</version>
</parent> </parent>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>Mage-Sets</artifactId> <artifactId>Mage-Sets</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>0.3</version> <name>Mage Sets</name>
<name>Mage Sets</name> <url>http://maven.apache.org</url>
<url>http://maven.apache.org</url>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.mage</groupId> <groupId>${project.groupId}</groupId>
<artifactId>Mage</artifactId> <artifactId>Mage</artifactId>
<version>${mage-version}</version> <version>${mage-version}</version>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<sourceDirectory>src</sourceDirectory> <sourceDirectory>src</sourceDirectory>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version> <version>2.0.2</version>
<configuration> <configuration>
<source>1.6</source> <source>1.6</source>
<target>1.6</target> <target>1.6</target>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-resources-plugin</artifactId> <artifactId>maven-resources-plugin</artifactId>
<configuration> <configuration>
<encoding>UTF-8</encoding> <encoding>UTF-8</encoding>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
<finalName>mage-sets</finalName> <finalName>mage-sets</finalName>
</build> </build>
<properties/> <properties/>
</project> </project>

View file

@ -1,49 +1,47 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>mage-root</artifactId> <artifactId>mage-root</artifactId>
<version>0.3</version> <version>0.5</version>
</parent> </parent>
<groupId>org.mage</groupId> <artifactId>Mage</artifactId>
<artifactId>Mage</artifactId> <packaging>jar</packaging>
<packaging>jar</packaging> <name>Mage Framework</name>
<version>0.3</version>
<name>Mage Framework</name>
<url>http://maven.apache.org</url>
<dependencies /> <dependencies />
<build> <build>
<sourceDirectory>src</sourceDirectory> <sourceDirectory>src</sourceDirectory>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version> <version>2.0.2</version>
<configuration> <configuration>
<source>1.6</source> <source>1.6</source>
<target>1.6</target> <target>1.6</target>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-resources-plugin</artifactId> <artifactId>maven-resources-plugin</artifactId>
<configuration> <configuration>
<encoding>UTF-8</encoding> <encoding>UTF-8</encoding>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
<finalName>mage</finalName> <finalName>mage</finalName>
</build> </build>
<properties/> <properties/>
</project> </project>

View file

@ -2,6 +2,7 @@
use WWW::Mechanize; use WWW::Mechanize;
use HTML::TreeBuilder; use HTML::TreeBuilder;
use Parse::RecDescent;
use Text::Template; use Text::Template;
use strict; use strict;
@ -232,6 +233,9 @@ $mana{'Black or Green'} = 'B\\\\G';
$mana{'Black or Red'} = 'B\\\\R'; $mana{'Black or Red'} = 'B\\\\R';
$mana{'Red or Green'} = 'R\\\\G'; $mana{'Red or Green'} = 'R\\\\G';
my $parser = new Parse::RecDescent(q{
});
my %normalid; my %normalid;
print "Enter a card name: "; print "Enter a card name: ";

98
pom.xml
View file

@ -1,49 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?> <?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" <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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.mage</groupId> <groupId>org.mage</groupId>
<artifactId>mage-root</artifactId> <artifactId>mage-root</artifactId>
<version>0.3</version> <version>0.5</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>Mage Root</name> <name>Mage Root</name>
<description>Mage Root POM</description> <description>Mage Root POM</description>
<modules> <modules>
<module>Mage</module> <module>Mage</module>
<module>Mage.Common</module> <module>Mage.Common</module>
<module>Mage.Server</module> <module>Mage.Server</module>
<module>Mage.Sets</module> <module>Mage.Sets</module>
<module>Mage.Client</module> <module>Mage.Client</module>
<module>Mage.Deck.Constructed</module> <module>Mage.Deck.Constructed</module>
<module>Mage.Game.FreeForAll</module> <module>Mage.Game.FreeForAll</module>
<module>Mage.Game.TwoPlayerDuel</module> <module>Mage.Game.TwoPlayerDuel</module>
<module>Mage.Player.AI</module> <module>Mage.Player.AI</module>
<module>Mage.Player.AIMinimax</module> <module>Mage.Player.AIMinimax</module>
<module>Mage.Player.Human</module> <module>Mage.Player.Human</module>
<module>Mage.Plugins</module> <module>Mage.Plugins</module>
</modules> </modules>
<repositories> <repositories>
<repository> <repository>
<id>mage.googlecode.com</id> <id>mage.googlecode.com</id>
<url>http://magic--another-game-engine.googlecode.com/svn/trunk/repository</url> <url>http://magic--another-game-engine.googlecode.com/svn/trunk/repository</url>
</repository> </repository>
<repository> <repository>
<id>java-image-scaling</id> <id>java-image-scaling</id>
<name>Java Image Scaling Repository Released</name> <name>Java Image Scaling Repository Released</name>
<url>svn:https://java-image-scaling.googlecode.com/svn/repo/released</url> <url>svn:https://java-image-scaling.googlecode.com/svn/repo/released</url>
</repository> </repository>
<repository> <repository>
<id>jetlang.googlecode.com</id> <id>jetlang.googlecode.com</id>
<name>Jetlang Repository for Maven</name> <name>Jetlang Repository for Maven</name>
<url>http://jetlang.googlecode.com/svn/repo/</url> <url>http://jetlang.googlecode.com/svn/repo/</url>
</repository> </repository>
</repositories> </repositories>
<properties> <properties>
<mage-version>0.3</mage-version> <mage-version>0.5</mage-version>
</properties> </properties>
</project> </project>