gwlpr/host/pom.xml
2013-10-11 11:49:24 +02:00

58 lines
No EOL
1.9 KiB
XML

<?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>
<artifactId>host</artifactId>
<parent>
<groupId>com.gamerevision.gwlpr</groupId>
<artifactId>gwlpr</artifactId>
<version>0.3.3</version>
</parent>
<name>${project.artifactId}</name>
<description>The host application (used to run this project in development mode).</description>
<dependencies>
<!-- The other GWLPR modules -->
<dependency>
<groupId>com.gamerevision.gwlpr</groupId>
<artifactId>database</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.gamerevision.gwlpr</groupId>
<artifactId>protocol</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.gamerevision.gwlpr</groupId>
<artifactId>loginshard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.gamerevision.gwlpr</groupId>
<artifactId>mapshard</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Allows Maven to launch this server -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<configuration>
<mainClass>gwlpr.host.HostApplication</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</project>