mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-06 07:32:46 +00:00
28 lines
909 B
XML
28 lines
909 B
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>
|
|
<groupId>com.l2jserver</groupId>
|
|
<artifactId>l2jserver2-gameserver</artifactId>
|
|
<version>2.0.0-DEVEL</version>
|
|
<name>L2JServer - Game Server Module</name>
|
|
<description>Lineage II server emulator</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.l2jserver</groupId>
|
|
<artifactId>l2jserver2-core</artifactId>
|
|
<version>2.0.0-DEVEL</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>repository.jboss.org</id>
|
|
<url>https://repository.jboss.org/nexus/content/repositories/releases/</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
</project> |