Skip to content
Snippets Groups Projects
Commit decb8a2c authored by Zoey76's avatar Zoey76
Browse files

Dependency Update

parent 8414e3e7
No related branches found
No related tags found
No related merge requests found
...@@ -2,26 +2,27 @@ ...@@ -2,26 +2,27 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.l2jserver</groupId> <groupId>com.l2jserver</groupId>
<artifactId>l2j-server-commons</artifactId> <artifactId>l2j-server-commons</artifactId>
<version>2.6.7.0</version> <version>2.6.7.1</version>
<name>L2J Server - Commons</name> <name>L2J Server - Commons</name>
<description>L2J Commons is a library used by login and game server implementations.</description> <description>L2J Commons is a library used by login and game server implementations.</description>
<url>https://bitbucket.org/l2jserver/l2j-server-commons/</url> <url>https://bitbucket.org/l2jserver/l2j-server-commons/</url>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>21</maven.compiler.source> <maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target> <maven.compiler.target>21</maven.compiler.target>
<slf4j.version>2.0.9</slf4j.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<mariadb-java-client.version>3.3.1</mariadb-java-client.version> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<HikariCP.version>5.1.0</HikariCP.version>
<weupnp.version>0.1.4</weupnp.version>
<!-- L2J --> <!-- L2J -->
<l2j-server-mmocore.version>2.6.5.0</l2j-server-mmocore.version> <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 --> <!-- Test -->
<junit-jupiter.version>5.10.1</junit-jupiter.version> <junit-jupiter.version>5.10.2</junit-jupiter.version>
<!-- Plugins --> <!-- Plugins -->
<dependency-check-maven.version>9.0.2</dependency-check-maven.version> <dependency-check-maven.version>9.1.0</dependency-check-maven.version>
<maven-surefire-plugin.version>3.2.2</maven-surefire-plugin.version> <maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version>
</properties> </properties>
<licenses> <licenses>
<license> <license>
...@@ -118,21 +119,32 @@ ...@@ -118,21 +119,32 @@
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version> <version>${maven-surefire-plugin.version}</version>
</plugin> </plugin>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>${dependency-check-maven.version}</version>
<configuration>
<failBuildOnCVSS>4</failBuildOnCVSS>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins> </plugins>
</build> </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> </project>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment