-
Zoey76 authoreddecb8a2c
pom.xml 4.64 KiB
<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-commons</artifactId>
<version>2.6.7.1</version>
<name>L2J Server - Commons</name>
<description>L2J Commons is a library used by login and game server implementations.</description>
<url>https://bitbucket.org/l2jserver/l2j-server-commons/</url>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- L2J -->
<l2j-server-mmocore.version>2.6.5.0</l2j-server-mmocore.version>
<!-- External -->
<slf4j.version>2.0.12</slf4j.version>
<mariadb-java-client.version>3.3.3</mariadb-java-client.version>
<HikariCP.version>5.1.0</HikariCP.version>
<weupnp.version>0.1.4</weupnp.version>
<!-- Test -->
<junit-jupiter.version>5.10.2</junit-jupiter.version>
<!-- Plugins -->
<dependency-check-maven.version>9.1.0</dependency-check-maven.version>
<maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version>
</properties>
<licenses>
<license>
<name>GPL 3.0</name>
<url>https://www.gnu.org/licenses/gpl-3.0.html</url>
</license>
</licenses>
<organization>
<name>L2J Server</name>
<url>https://l2jserver.com</url>
</organization>
<developers>
<developer>
<id>Zoey76</id>
</developer>
<developer>
<id>UnAfraid</id>
</developer>
<developer>
<id>HorridoJoho</id>
</developer>
<developer>
<id>Forsaiken</id>
</developer>
</developers>
<scm>
<connection>scm:git:git://bitbucket.org/l2jserver/l2j-server-commons.git</connection>
<developerConnection>scm:git:ssh://bitbucket.org:l2jserver/l2j-server-commons.git</developerConnection>
<url>https://bitbucket.org/l2jserver/l2j-server-commons/src</url>
</scm>
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>${mariadb-java-client.version}</version>
<exclusions>
<exclusion>
<groupId>com.github.waffle</groupId>
<artifactId>waffle-jna</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>${HikariCP.version}</version>
</dependency>
<dependency>
<groupId>org.bitlet</groupId>
<artifactId>weupnp</artifactId>
<version>${weupnp.version}</version>
</dependency>
<!-- L2J -->
<dependency>
<groupId>org.bitbucket.l2jserver</groupId>
<artifactId>l2j-server-mmocore</artifactId>
<version>${l2j-server-mmocore.version}</version>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>ci</id>
<build>
<plugins>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>${dependency-check-maven.version}</version>
<configuration>
<failBuildOnCVSS>8</failBuildOnCVSS>
<assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled>
<nvdApiKey>${env.NVD_API_KEY}</nvdApiKey>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>