Update dependencies

This commit is contained in:
Matthew Ellison
2026-08-15 18:22:18 -04:00
parent 0716635d99
commit 89b6f5cdb4
2 changed files with 19 additions and 14 deletions

View File

@@ -2,6 +2,7 @@
[![Quality Gate Status](https://sonarqube.mattrixwv.com/api/project_badges/measure?project=matrix&metric=alert_status&token=sqb_b6f7219a7b625b1ab2964e9dfa90e58a7c4c4e57)](https://sonarqube.mattrixwv.com/dashboard?id=matrix) [![Quality Gate Status](https://sonarqube.mattrixwv.com/api/project_badges/measure?project=matrix&metric=alert_status&token=sqb_b6f7219a7b625b1ab2964e9dfa90e58a7c4c4e57)](https://sonarqube.mattrixwv.com/dashboard?id=matrix)
This is my matrix library, created as curiosity and to fit into my [Cipher Stream](https://git.mattrixwv.com/BaseLibraries/CipherStream) project. This is my matrix library, created as curiosity and to fit into my
[Cipher Stream](https://git.mattrixwv.com/BaseLibraries/CipherStream) project.
TODO: Fill this is better information about library usage. TODO: Fill this is better information about library usage.

30
pom.xml
View File

@@ -27,7 +27,7 @@
<groupId>com.mattrixwv</groupId> <groupId>com.mattrixwv</groupId>
<artifactId>matrix</artifactId> <artifactId>matrix</artifactId>
<version>1.3.3-SNAPSHOT</version> <version>1.3.3</version>
<name>Matrix</name> <name>Matrix</name>
<description>A library for performing Matrix operations</description> <description>A library for performing Matrix operations</description>
@@ -51,7 +51,7 @@
<dependency> <dependency>
<groupId>org.junit.jupiter</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId> <artifactId>junit-jupiter</artifactId>
<version>6.0.2</version> <version>6.1.3</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
@@ -139,9 +139,12 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId> <artifactId>maven-enforcer-plugin</artifactId>
<version>3.6.2</version> <version>3.6.3</version>
<configuration> <configuration>
<rules> <rules>
<requireJavaVersion>
<version>25</version>
</requireJavaVersion>
<requireMavenVersion> <requireMavenVersion>
<version>3.8.6</version> <version>3.8.6</version>
</requireMavenVersion> </requireMavenVersion>
@@ -158,12 +161,12 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId> <artifactId>maven-resources-plugin</artifactId>
<version>3.4.0</version> <version>3.5.0</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.14.1</version> <version>3.15.0</version>
<configuration> <configuration>
<release>${java.version}</release> <release>${java.version}</release>
<compilerArgs> <compilerArgs>
@@ -177,12 +180,12 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>3.5.4</version> <version>3.5.6</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<version>3.5.0</version> <version>3.5.1</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
@@ -192,7 +195,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId> <artifactId>maven-site-plugin</artifactId>
<version>3.21.0</version> <version>3.22.0</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
@@ -210,29 +213,30 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId>
<version>3.9.0</version> <version>3.11.0</version>
</plugin> </plugin>
<!--Sonarqube--> <!--Sonarqube-->
<plugin> <plugin>
<groupId>org.sonarsource.scanner.maven</groupId> <groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId> <artifactId>sonar-maven-plugin</artifactId>
<version>5.5.0.6356</version> <version>5.7.0.6970</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.jacoco</groupId> <groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId> <artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.14</version> <version>0.8.15</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.owasp</groupId> <groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId> <artifactId>dependency-check-maven</artifactId>
<version>12.2.0</version> <version>13.0.0</version>
<configuration> <configuration>
<formats> <formats>
<format>json</format> <format>json</format>
<format>html</format> <format>html</format>
</formats> </formats>
<!--<nvdDatafeedUrl>https://dependency-check.github.io/DependencyCheck_Builder/nvd_cache/nvdcve-{0}.json.gz</nvdDatafeedUrl>-->
<nvdApiServerId>nvd</nvdApiServerId> <nvdApiServerId>nvd</nvdApiServerId>
<failBuildOnCVSS>7</failBuildOnCVSS> <failBuildOnCVSS>7</failBuildOnCVSS>
<ossIndexServerId>ossindex</ossIndexServerId> <ossIndexServerId>ossindex</ossIndexServerId>
@@ -243,7 +247,7 @@
<plugin> <plugin>
<groupId>org.sonatype.central</groupId> <groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId> <artifactId>central-publishing-maven-plugin</artifactId>
<version>0.10.0</version> <version>0.11.0</version>
<extensions>true</extensions> <extensions>true</extensions>
<configuration> <configuration>
<publishingServerId>central</publishingServerId> <publishingServerId>central</publishingServerId>