2010-12-02 09:14:18 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2012-07-19 18:15:09 +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">
|
2012-06-19 20:50:20 +00:00
|
|
|
|
2010-12-02 09:14:18 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2012-06-19 20:50:20 +00:00
|
|
|
|
2010-12-02 09:14:18 +00:00
|
|
|
<groupId>org.mage</groupId>
|
|
|
|
<artifactId>mage-root</artifactId>
|
2012-12-27 23:48:26 +00:00
|
|
|
<version>0.10.1</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>
|
2012-07-19 19:49:13 +00:00
|
|
|
<version>2.0.2</version>
|
2011-04-29 02:52:52 +00:00
|
|
|
<configuration>
|
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2012-07-19 18:15:09 +00:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<configuration>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
</plugin>
|
2011-04-29 02:52:52 +00:00
|
|
|
</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>
|
2012-06-19 20:50:20 +00:00
|
|
|
<module>Mage.Server.Console</module>
|
2011-11-16 11:27:16 +00:00
|
|
|
<module>Mage.Tests</module>
|
2012-05-11 07:29:48 +00:00
|
|
|
<module>Mage.Updater</module>
|
2012-03-09 09:41:00 +00:00
|
|
|
</modules>
|
2010-12-02 09:14:18 +00:00
|
|
|
|
|
|
|
<repositories>
|
2012-07-19 18:15:09 +00:00
|
|
|
<repository>
|
2011-06-23 01:50:02 +00:00
|
|
|
<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>
|
2012-07-25 17:21:35 +00:00
|
|
|
<repository>
|
|
|
|
<id>local-project-repo</id>
|
|
|
|
<url>file:repository</url>
|
|
|
|
</repository>
|
2010-12-02 09:14:18 +00:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<properties>
|
2012-12-27 23:48:26 +00:00
|
|
|
<mage-version>0.10.1</mage-version>
|
2012-07-19 18:15:09 +00:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2012-07-28 17:38:33 +00:00
|
|
|
<netbeans.hint.license>mage</netbeans.hint.license>
|
2010-12-02 09:14:18 +00:00
|
|
|
</properties>
|
2011-06-25 18:34:39 +00:00
|
|
|
</project>
|