mage/Mage.Client/pom.xml

64 lines
1.5 KiB
XML
Raw Normal View History

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2010-10-22 11:54:23 +00:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.mage</groupId>
<artifactId>mage-root</artifactId>
<version>0.3</version>
</parent>
<groupId>org.mage</groupId>
2010-10-28 03:19:26 +00:00
<artifactId>mage-client</artifactId>
2010-10-22 11:54:23 +00:00
<packaging>jar</packaging>
<version>0.3</version>
<name>Mage Client</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
2010-10-22 11:54:23 +00:00
<groupId>org.mage</groupId>
2010-10-28 03:19:26 +00:00
<artifactId>mage</artifactId>
2010-10-22 11:54:23 +00:00
<version>${mage-version}</version>
</dependency>
<dependency>
2010-10-22 11:54:23 +00:00
<groupId>org.mage</groupId>
2010-10-28 03:19:26 +00:00
<artifactId>mage-common</artifactId>
2010-10-22 11:54:23 +00:00
<version>${mage-version}</version>
</dependency>
<dependency>
2010-10-22 11:54:23 +00:00
<groupId>org.mage</groupId>
2010-10-28 03:19:26 +00:00
<artifactId>mage-sets</artifactId>
2010-10-22 11:54:23 +00:00
<version>${mage-version}</version>
</dependency>
</dependencies>
2010-10-22 11:54:23 +00:00
<build>
2010-10-22 11:54:23 +00:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2010-10-28 03:19:26 +00:00
<version>2.0.2</version>
2010-10-22 11:54:23 +00:00
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
2010-10-28 03:19:26 +00:00
2010-10-22 11:54:23 +00:00
</plugins>
<finalName>mage-client</finalName>
</build>
2010-10-22 11:54:23 +00:00
<properties>
<mage-version>0.3</mage-version>
</properties>
</project>