mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-06 07:32:46 +00:00
Now each server server has an maven module which implements changes to the default behavior within the "core" gameserver module. This allows to keep multiple server versions without the need of several branches and with little code duplication.
76 lines
2.1 KiB
XML
76 lines
2.1 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>
|
|
<packaging>pom</packaging>
|
|
|
|
<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>
|
|
|
|
<modules>
|
|
<module>l2jserver2-gameserver-core</module>
|
|
<module>l2jserver2-gameserver-freya</module>
|
|
</modules>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<configuration>
|
|
<descriptors>
|
|
<descriptor>src/main/assembly/distribution-pack-data.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>
|
|
|
|
<!-- 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>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- utils -->
|
|
<dependency>
|
|
<groupId>org.eclipse.jdt.core.compiler</groupId>
|
|
<artifactId>ecj</artifactId>
|
|
<version>3.7.1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|