mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-06 07:32:46 +00:00
94 lines
2.8 KiB
XML
94 lines
2.8 KiB
XML
<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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.l2jserver</groupId>
|
|
<artifactId>l2jserver2</artifactId>
|
|
<version>0.0.2-SNAPSHOT</version>
|
|
<relativePath>..</relativePath>
|
|
</parent>
|
|
<artifactId>l2jserver2-gameserver</artifactId>
|
|
|
|
<name>L2JServer 2 game server</name>
|
|
<description>This game server is responsible for communicating the game client with the game virtual world. It provides data storage and processing along with broadcasting positioning data to other connected clients.</description>
|
|
<inceptionYear>2011</inceptionYear>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<configuration>
|
|
<descriptors>
|
|
<descriptor>src/main/assembly/distribution-mysql5-bin.xml</descriptor>
|
|
<descriptor>src/main/assembly/distribution-orientdb-bin.xml</descriptor>
|
|
<descriptor>src/main/assembly/distribution-h2-bin.xml</descriptor>
|
|
<descriptor>src/main/assembly/distribution-derby-bin.xml</descriptor>
|
|
<descriptor>src/main/assembly/distribution-src.xml</descriptor>
|
|
</descriptors>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<!-- l2jserver2 commons -->
|
|
<dependency>
|
|
<groupId>com.l2jserver</groupId>
|
|
<artifactId>l2jserver2-common</artifactId>
|
|
<version>0.0.2-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<!-- junit -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.10</version>
|
|
<type>jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- netty -->
|
|
<dependency>
|
|
<groupId>org.jboss.netty</groupId>
|
|
<artifactId>netty</artifactId>
|
|
<version>3.2.7.Final</version>
|
|
</dependency>
|
|
<!-- google guice -->
|
|
<!-- logging -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
<version>1.6.4</version>
|
|
<type>jar</type>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<!-- cache -->
|
|
<dependency>
|
|
<groupId>net.sf.ehcache</groupId>
|
|
<artifactId>ehcache-core</artifactId>
|
|
<version>2.5.0</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
<!-- html parser/generator -->
|
|
<dependency>
|
|
<groupId>org.htmlparser</groupId>
|
|
<artifactId>htmlparser</artifactId>
|
|
<version>2.1</version>
|
|
<type>jar</type>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.sun</groupId>
|
|
<artifactId>tools</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!-- utils -->
|
|
<dependency>
|
|
<groupId>org.eclipse.jdt.core.compiler</groupId>
|
|
<artifactId>ecj</artifactId>
|
|
<version>3.7.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|