2010-12-02 09:14:18 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2011-05-15 03:39:41 +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">
|
2010-12-02 09:14:18 +00:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>org.mage</groupId>
|
|
|
|
<artifactId>mage-root</artifactId>
|
2011-10-16 17:02:04 +00:00
|
|
|
<version>0.8</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-05-15 03:39:41 +00:00
|
|
|
<module>Mage.Server.Console</module>
|
2011-06-05 13:50:31 +00:00
|
|
|
</modules>
|
2010-12-02 09:14:18 +00:00
|
|
|
|
|
|
|
<repositories>
|
2011-06-23 01:50:02 +00:00
|
|
|
<repository>
|
|
|
|
<id>jboss-public-repository</id>
|
|
|
|
<name>JBoss Repository</name>
|
|
|
|
<url>https://repository.jboss.org/nexus/content/groups/public</url>
|
|
|
|
<!-- These optional flags are designed to speed up your builds by reducing remote server calls -->
|
|
|
|
<releases>
|
|
|
|
<updatePolicy>never</updatePolicy>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<updatePolicy>daily</updatePolicy>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
|
|
|
|
<repository>
|
|
|
|
<id>jboss-deprecated-repository-group</id>
|
|
|
|
<name>JBoss Deprecated Maven Repository Group</name>
|
|
|
|
<url>https://repository.jboss.org/nexus/content/repositories/deprecated/</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<updatePolicy>never</updatePolicy>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<updatePolicy>never</updatePolicy>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
2011-06-25 18:34:39 +00:00
|
|
|
<repository>
|
|
|
|
<id>sonatype-org</id>
|
|
|
|
<url>https://maven.nuxeo.org/nexus/content/repositories/public/org/</url>
|
|
|
|
</repository>
|
2010-12-02 09:14:18 +00:00
|
|
|
<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>
|
2011-06-23 01:50:02 +00:00
|
|
|
</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-10-16 17:02:04 +00:00
|
|
|
<mage-version>0.8</mage-version>
|
2010-12-02 09:14:18 +00:00
|
|
|
</properties>
|
2011-06-25 18:34:39 +00:00
|
|
|
</project>
|