mage/Mage.Server.Plugins/Mage.Game.TwoPlayerDuel/pom.xml

51 lines
1.4 KiB
XML
Raw Normal View History

2010-12-02 09:14:18 +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">
2010-12-02 09:14:18 +00:00
<modelVersion>4.0.0</modelVersion>
2010-12-02 09:14:18 +00:00
<parent>
<groupId>org.mage</groupId>
2011-10-28 11:42:54 +00:00
<artifactId>mage-server-plugins</artifactId>
2013-02-26 10:11:00 +00:00
<version>1.0.0</version>
2010-12-02 09:14:18 +00:00
</parent>
2011-10-28 11:42:54 +00:00
<artifactId>mage-game-twoplayerduel</artifactId>
2010-12-02 09:14:18 +00:00
<packaging>jar</packaging>
<name>Mage Game Two Player</name>
2010-12-02 09:14:18 +00:00
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
2011-10-28 11:42:54 +00:00
<artifactId>mage</artifactId>
2010-12-02 09:14:18 +00:00
<version>${project.version}</version>
</dependency>
</dependencies>
2010-12-02 09:14:18 +00:00
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<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-12-02 09:14:18 +00:00
</plugins>
2010-12-02 09:14:18 +00:00
<finalName>mage-game-twoplayerduel</finalName>
</build>
2010-12-02 09:14:18 +00:00
<properties/>
</project>