5 Commits

Author SHA1 Message Date
Matthew Ellison
4af10d9726 Update snapshot version 2026-08-15 20:04:01 -04:00
Matthew Ellison
e7f816d836 Update dependencies 2026-08-15 19:51:34 -04:00
Matthew Ellison
f193a27d5f Add new maven4 config 2026-01-26 22:50:54 -05:00
Matthew Ellison
666faa9559 Update developer information 2026-01-26 18:37:23 -05:00
Matthew Ellison
db56ede58e Update snapshot version 2026-01-26 18:32:19 -05:00
2 changed files with 19 additions and 14 deletions

2
.mvn/maven.config Normal file
View File

@@ -0,0 +1,2 @@
-Dstyle.color=always
-T1C

31
pom.xml
View File

@@ -15,7 +15,7 @@
<developer>
<name>Matthew Ellison</name>
<email>m_ellison@ymail.com</email>
<url>https://bitbucket.org/Mattrixwv</url>
<url>https://git.mattrixwv.com/matthew</url>
</developer>
</developers>
@@ -27,7 +27,7 @@
<groupId>com.mattrixwv</groupId>
<artifactId>myClasses</artifactId>
<version>1.4.1</version>
<version>1.4.3-SNAPSHOT</version>
<name>myClasses</name>
<description>A grouping of functions that I've found useful</description>
@@ -53,7 +53,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>6.0.2</version>
<version>6.1.3</version>
<scope>test</scope>
</dependency>
</dependencies>
@@ -138,12 +138,15 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.6.2</version>
<version>3.6.3</version>
<configuration>
<rules>
<requireMavenVersion>
<version>3.8.6</version>
</requireMavenVersion>
<requireJavaVersion>
<version>25</version>
</requireJavaVersion>
</rules>
</configuration>
</plugin>
@@ -155,12 +158,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.4.0</version>
<version>3.5.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.1</version>
<version>3.15.0</version>
<configuration>
<release>${java.version}</release>
<compilerArgs>
@@ -173,12 +176,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.4</version>
<version>3.5.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.5.0</version>
<version>3.5.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -188,7 +191,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.21.0</version>
<version>3.22.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -206,19 +209,19 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.9.0</version>
<version>3.11.0</version>
</plugin>
<!--Sonarqube-->
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>5.5.0.6356</version>
<version>5.7.0.6970</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.14</version>
<version>0.8.15</version>
<executions>
<execution>
<id>jacoco-initialize</id>
@@ -239,7 +242,7 @@
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>12.2.0</version>
<version>13.0.0</version>
<executions>
<execution>
<phase>none</phase>
@@ -263,7 +266,7 @@
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.10.0</version>
<version>0.11.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>