mage/pom.xml

65 lines
2.1 KiB
XML
Raw Normal View History

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>
<version>0.7.4</version>
2010-12-02 09:14:18 +00:00
<packaging>pom</packaging>
<name>Mage Root</name>
<description>Mage Root POM</description>
<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>
<module>Mage.Server.Plugins</module>
2011-05-15 03:39:41 +00:00
<module>Mage.Server.Console</module>
2011-06-05 18:26:51 +00:00
<module>Mage.Tests</module>
2011-06-05 13:50:31 +00:00
</modules>
2010-12-02 09:14:18 +00:00
<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>
<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>
<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>
<mage-version>0.7.4</mage-version>
2010-12-02 09:14:18 +00:00
</properties>
2011-05-15 03:39:41 +00:00
</project>