mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
65 lines
No EOL
2.1 KiB
XML
65 lines
No EOL
2.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>0.7.2</version>
|
|
<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>
|
|
<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>
|
|
<module>Mage.Server.Console</module>
|
|
<module>Mage.Tests</module>
|
|
</modules>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>mage.googlecode.com</id>
|
|
<url>https://mage.googlecode.com/hg/repository/</url>
|
|
</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>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>akathist-repository</id>
|
|
<name>Akathist Repository</name>
|
|
<url>http://www.9stmaryrd.com/maven</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
<properties>
|
|
<mage-version>0.7.2</mage-version>
|
|
</properties>
|
|
</project> |