2013-05-11 21:06:30 +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>
|
2013-07-21 20:52:25 +00:00
|
|
|
<version>1.1.0</version>
|
2013-05-11 21:06:30 +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>
|
2013-07-13 07:34:36 +00:00
|
|
|
<encoding>UTF-8</encoding>
|
2013-05-11 21:06:30 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<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>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestEntries>
|
|
|
|
<Built-By>MageTeam</Built-By>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</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>
|
|
|
|
<module>Mage.Updater</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<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>local-project-repo</id>
|
|
|
|
<url>file:repository</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<properties>
|
2013-07-21 20:52:25 +00:00
|
|
|
<mage-version>1.1.0</mage-version>
|
2013-05-11 21:06:30 +00:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
</project>
|