2010-12-03 19:05: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">
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.mage</groupId>
|
2011-10-28 11:42:54 +00:00
|
|
|
<artifactId>mage-server-plugins</artifactId>
|
2011-10-28 07:36:42 +00:00
|
|
|
<version>0.8.1</version>
|
2010-12-03 19:05:41 +00:00
|
|
|
</parent>
|
|
|
|
|
2011-10-28 11:42:54 +00:00
|
|
|
<artifactId>mage-deck-limited</artifactId>
|
2010-12-03 19:05:41 +00:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Mage Deck Limited</name>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
2011-10-28 11:42:54 +00:00
|
|
|
<artifactId>mage</artifactId>
|
2010-12-03 19:05:41 +00:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
|
|
|
<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>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
|
|
<finalName>mage-deck-limited</finalName>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties/>
|
|
|
|
</project>
|