123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <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>l2j-server-game</artifactId>
- <version>2.6.2.0-SNAPSHOT</version>
- <name>L2J Game Server</name>
- <properties>
- <maven.compiler.source>14</maven.compiler.source>
- <maven.compiler.target>14</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <slf4j.version>1.7.30</slf4j.version>
- <log4j.version>2.13.3</log4j.version>
- <InMemoryJavaCompiler.version>1.3.0</InMemoryJavaCompiler.version>
- <gson.version>2.8.6</gson.version>
- <owner.version>1.0.12</owner.version>
- <jda.version>4.2.0_220</jda.version>
- <l2j-server-commons.version>2.6.4.0</l2j-server-commons.version>
- <l2j-server-geo-driver.version>2.6.3.0</l2j-server-geo-driver.version>
- <!-- Test -->
- <testng.version>7.3.0</testng.version>
- <mockito-core.version>3.5.2</mockito-core.version>
- <!-- Plugins -->
- <maven-jar-plugin.version>3.2.0</maven-jar-plugin.version>
- <maven-assembly-plugin.version>3.3.0</maven-assembly-plugin.version>
- </properties>
- <repositories>
- <repository>
- <id>jitpack.io</id>
- <url>https://jitpack.io</url>
- </repository>
- <!-- Jcenter for JDA -->
- <repository>
- <id>jcenter</id>
- <name>jcenter-bintray</name>
- <url>https://jcenter.bintray.com</url>
- </repository>
- </repositories>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>${maven-jar-plugin.version}</version>
- <configuration>
- <finalName>l2jserver</finalName>
- <archive>
- <manifest>
- <addClasspath>true</addClasspath>
- <classpathPrefix>libs/</classpathPrefix>
- <mainClass>com.l2jserver.gameserver.GameServer</mainClass>
- </manifest>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <version>${maven-assembly-plugin.version}</version><!-- $NO-MVN-MAN-VER$ -->
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- <configuration>
- <finalName>${project.artifactId}-${project.version}</finalName>
- <appendAssemblyId>false</appendAssemblyId>
- <descriptors>
- <descriptor>src/main/assembly/zip.xml</descriptor>
- </descriptors>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>${slf4j.version}</version>
- </dependency>
- <!-- TODO(Zoey76): Remove when loggers rework is completed. -->
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>jul-to-slf4j</artifactId>
- <version>${slf4j.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.logging.log4j</groupId>
- <artifactId>log4j-slf4j-impl</artifactId>
- <version>${log4j.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.logging.log4j</groupId>
- <artifactId>log4j-core</artifactId>
- <version>${log4j.version}</version>
- </dependency>
- <dependency>
- <groupId>org.mdkt.compiler</groupId>
- <artifactId>InMemoryJavaCompiler</artifactId>
- <version>${InMemoryJavaCompiler.version}</version>
- </dependency>
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- <version>${gson.version}</version>
- </dependency>
- <dependency>
- <groupId>org.aeonbits.owner</groupId>
- <artifactId>owner-java8</artifactId>
- <version>${owner.version}</version>
- </dependency>
- <dependency>
- <groupId>net.dv8tion</groupId>
- <artifactId>JDA</artifactId>
- <version>${jda.version}</version>
- </dependency>
- <!-- L2J -->
- <dependency>
- <groupId>org.bitbucket.l2jserver</groupId>
- <artifactId>l2j-server-commons</artifactId>
- <version>${l2j-server-commons.version}</version>
- </dependency>
- <dependency>
- <groupId>org.bitbucket.l2jserver</groupId>
- <artifactId>l2j-server-geo-driver</artifactId>
- <version>${l2j-server-geo-driver.version}</version>
- </dependency>
- <!-- Test -->
- <dependency>
- <groupId>org.testng</groupId>
- <artifactId>testng</artifactId>
- <version>${testng.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-core</artifactId>
- <version>${mockito-core.version}</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|