2010-12-02 09:14:18 +00:00
|
|
|
<?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>
|
2011-04-29 02:52:52 +00:00
|
|
|
<version>0.7.2</version>
|
2010-12-02 09:14:18 +00:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Mage Root</name>
|
|
|
|
<description>Mage Root POM</description>
|
2011-04-29 02:52:52 +00:00
|
|
|
<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>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2010-12-02 09:14:18 +00:00
|
|
|
<modules>
|
|
|
|
<module>Mage</module>
|
|
|
|
<module>Mage.Common</module>
|
|
|
|
<module>Mage.Server</module>
|
|
|
|
<module>Mage.Sets</module>
|
|
|
|
<module>Mage.Client</module>
|
|
|
|
<module>Mage.Plugins</module>
|
2010-12-04 02:04:23 +00:00
|
|
|
<module>Mage.Server.Plugins</module>
|
2011-04-29 20:54:16 +00:00
|
|
|
<module>Mage.Tests</module>
|
2010-12-02 09:14:18 +00:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>mage.googlecode.com</id>
|
2011-02-19 17:57:58 +00:00
|
|
|
<url>https://mage.googlecode.com/hg/repository/</url>
|
2010-12-02 09:14:18 +00:00
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>jetlang.googlecode.com</id>
|
|
|
|
<name>Jetlang Repository for Maven</name>
|
|
|
|
<url>http://jetlang.googlecode.com/svn/repo/</url>
|
|
|
|
</repository>
|
2011-04-29 20:54:16 +00:00
|
|
|
<repository>
|
|
|
|
<id>akathist-repository</id>
|
|
|
|
<name>Akathist Repository</name>
|
|
|
|
<url>http://www.9stmaryrd.com/maven</url>
|
|
|
|
</repository>
|
2010-12-02 09:14:18 +00:00
|
|
|
</repositories>
|
|
|
|
|
2011-04-29 20:54:16 +00:00
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>akathist-repository</id>
|
|
|
|
<name>Akathist Repository</name>
|
|
|
|
<url>http://www.9stmaryrd.com/maven</url>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
|
2010-12-02 09:14:18 +00:00
|
|
|
<properties>
|
2011-04-29 02:52:52 +00:00
|
|
|
<mage-version>0.7.2</mage-version>
|
2010-12-02 09:14:18 +00:00
|
|
|
</properties>
|
|
|
|
</project>
|