208 lines
8.0 KiB
XML
208 lines
8.0 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/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<groupId>cosmic-maplestory</groupId>
|
||
|
<artifactId>Cosmic</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<properties>
|
||
|
<!-- Project -->
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<java.version>17</java.version>
|
||
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
||
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
||
|
<mainClass>net.server.Server</mainClass>
|
||
|
|
||
|
<!-- Maven plugins -->
|
||
|
<maven-surefire-plugin.version>3.0.0-M9</maven-surefire-plugin.version> <!-- For running unit tests -->
|
||
|
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version> <!-- Disabled. (for building thin jar) -->
|
||
|
<maven-assembly-plugin.version>3.5.0</maven-assembly-plugin.version> <!-- For packaging the executable fat jar -->
|
||
|
|
||
|
<!-- Dependencies -->
|
||
|
<slf4j-api.version>1.7.36</slf4j-api.version> <!-- Logging facade -->
|
||
|
<log4j.version>2.20.0</log4j.version> <!-- Slf4j implementation -->
|
||
|
<graalvm.version>22.3.1</graalvm.version> <!-- ScriptEngine implementation -->
|
||
|
<netty.version>4.1.89.Final</netty.version> <!-- Networking -->
|
||
|
<yamlbeans.version>1.15</yamlbeans.version> <!-- Config file -->
|
||
|
<jcip-annotations.version>1.0</jcip-annotations.version> <!-- Annotations for concurrency documentation -->
|
||
|
<HikariCP.version>5.0.1</HikariCP.version> <!-- Database connection pool -->
|
||
|
<mysql-connector-j.version>8.0.32</mysql-connector-j.version> <!-- MySQL JDBC driver -->
|
||
|
<jdbi-version>3.37.1</jdbi-version> <!-- Convenience wrapper around JDBC -->
|
||
|
<junit.version>5.9.2</junit.version> <!-- Unit test -->
|
||
|
<mockito.version>5.1.1</mockito.version> <!-- Unit test -->
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.esotericsoftware.yamlbeans</groupId>
|
||
|
<artifactId>yamlbeans</artifactId>
|
||
|
<version>${yamlbeans.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>net.jcip</groupId>
|
||
|
<artifactId>jcip-annotations</artifactId>
|
||
|
<version>${jcip-annotations.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Database -->
|
||
|
<dependency>
|
||
|
<groupId>com.zaxxer</groupId>
|
||
|
<artifactId>HikariCP</artifactId>
|
||
|
<version>${HikariCP.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.mysql</groupId>
|
||
|
<artifactId>mysql-connector-j</artifactId>
|
||
|
<version>${mysql-connector-j.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jdbi</groupId>
|
||
|
<artifactId>jdbi3-core</artifactId>
|
||
|
<version>${jdbi-version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
|
||
|
<!-- Networking -->
|
||
|
<dependency>
|
||
|
<groupId>io.netty</groupId>
|
||
|
<artifactId>netty-transport</artifactId>
|
||
|
<version>${netty.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.netty</groupId>
|
||
|
<artifactId>netty-codec</artifactId>
|
||
|
<version>${netty.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.netty</groupId>
|
||
|
<artifactId>netty-buffer</artifactId>
|
||
|
<version>${netty.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.netty</groupId>
|
||
|
<artifactId>netty-handler</artifactId>
|
||
|
<version>${netty.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Logging -->
|
||
|
<dependency>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-api</artifactId>
|
||
|
<version>${slf4j-api.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.logging.log4j</groupId>
|
||
|
<artifactId>log4j-core</artifactId>
|
||
|
<version>${log4j.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.logging.log4j</groupId>
|
||
|
<artifactId>log4j-api</artifactId>
|
||
|
<version>${log4j.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.logging.log4j</groupId>
|
||
|
<artifactId>log4j-slf4j-impl</artifactId>
|
||
|
<version>${log4j.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Scripting -->
|
||
|
<dependency>
|
||
|
<groupId>org.graalvm.js</groupId>
|
||
|
<artifactId>js</artifactId>
|
||
|
<version>${graalvm.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.graalvm.js</groupId>
|
||
|
<artifactId>js-scriptengine</artifactId>
|
||
|
<version>${graalvm.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Testing -->
|
||
|
<dependency>
|
||
|
<groupId>org.junit.jupiter</groupId>
|
||
|
<artifactId>junit-jupiter-api</artifactId>
|
||
|
<version>${junit.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.junit.jupiter</groupId>
|
||
|
<artifactId>junit-jupiter-engine</artifactId>
|
||
|
<version>${junit.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.junit.jupiter</groupId>
|
||
|
<artifactId>junit-jupiter-params</artifactId>
|
||
|
<version>${junit.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.mockito</groupId>
|
||
|
<artifactId>mockito-core</artifactId>
|
||
|
<version>${mockito.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<!-- Explicitly disable default jar which includes no dependencies -->
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
<version>${maven-jar-plugin.version}</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>default-jar</id>
|
||
|
<phase>none</phase>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
<version>${maven-surefire-plugin.version}</version>
|
||
|
</plugin>
|
||
|
|
||
|
<!-- Enable assembling jar that includes all dependencies -->
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||
|
<version>${maven-assembly-plugin.version}</version>
|
||
|
<configuration>
|
||
|
<descriptorRefs>
|
||
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||
|
</descriptorRefs>
|
||
|
<archive>
|
||
|
<manifest>
|
||
|
<mainClass>${mainClass}</mainClass>
|
||
|
</manifest>
|
||
|
<manifestEntries>
|
||
|
<Multi-Release>true</Multi-Release>
|
||
|
</manifestEntries>
|
||
|
</archive>
|
||
|
<finalName>${project.artifactId}</finalName>
|
||
|
<appendAssemblyId>false</appendAssemblyId>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>make-assembly</id>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>single</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|