3 Commits

Author SHA1 Message Date
324d611910 Fix deployment configuration 2026-01-26 15:13:43 -05:00
799eb03397 Updated version number 2026-01-26 15:04:18 -05:00
ac332f9740 Fix build warnings 2026-01-26 15:01:23 -05:00
6 changed files with 17 additions and 53 deletions

20
pom.xml
View File

@@ -27,7 +27,7 @@
<groupId>com.mattrixwv</groupId> <groupId>com.mattrixwv</groupId>
<artifactId>matrix</artifactId> <artifactId>matrix</artifactId>
<version>1.2.4-SNAPSHOT</version> <version>1.3.1</version>
<name>Matrix</name> <name>Matrix</name>
<description>A library for performing Matrix operations</description> <description>A library for performing Matrix operations</description>
@@ -89,6 +89,11 @@
</plugin> </plugin>
<!--Deployment--> <!--Deployment-->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
</plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId> <artifactId>maven-source-plugin</artifactId>
@@ -143,6 +148,7 @@
</rules> </rules>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-clean-plugin</artifactId> <artifactId>maven-clean-plugin</artifactId>
<version>3.5.0</version> <version>3.5.0</version>
@@ -150,38 +156,46 @@
<!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging --> <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId> <artifactId>maven-resources-plugin</artifactId>
<version>3.4.0</version> <version>3.4.0</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.14.1</version> <version>3.14.1</version>
<configuration> <configuration>
<release>${java.version}</release> <release>${java.version}</release>
<compilerArgs> <compilerArgs>
<arg>-Xlint:all</arg> <arg>-Xlint:all</arg>
<arg>-Xlint:-serial</arg>
</compilerArgs> </compilerArgs>
<showWarnings>true</showWarnings> <showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation> <showDeprecation>true</showDeprecation>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>3.5.4</version> <version>3.5.4</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<version>3.5.0</version> <version>3.5.0</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId> <artifactId>maven-install-plugin</artifactId>
<version>3.1.4</version> <version>3.1.4</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId> <artifactId>maven-site-plugin</artifactId>
<version>3.21.0</version> <version>3.21.0</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId> <artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.9.0</version> <version>3.9.0</version>
</plugin> </plugin>
@@ -220,8 +234,8 @@
<format>html</format> <format>html</format>
</formats> </formats>
<nvdApiServerId>nvd</nvdApiServerId> <nvdApiServerId>nvd</nvdApiServerId>
<failBuildOnCVSS>7</failBuildOnCVSS> <failBuildOnCVSS>7</failBuildOnCVSS>
<ossIndexServerId>ossrh</ossIndexServerId> <ossIndexServerId>ossindex</ossIndexServerId>
</configuration> </configuration>
</plugin> </plugin>

View File

@@ -1,7 +1,3 @@
//Matrix/src/main/java/com/mattrixwv/exceptions/InvalidCoordinatesException.java
//Mattrixwv
// Created: 02-01-22
//Modified: 08-08-24
package com.mattrixwv.matrix.exceptions; package com.mattrixwv.matrix.exceptions;
@@ -11,12 +7,6 @@ package com.mattrixwv.matrix.exceptions;
* @author Mattrixwv * @author Mattrixwv
*/ */
public class InvalidCoordinatesException extends RuntimeException{ public class InvalidCoordinatesException extends RuntimeException{
/**
* Serialization identifier for this class.
*/
public static final long serialVersionUID = 1;
/** /**
* Constructs a new {@code InvalidCoordinatesException} with {@code null} as its detail message. * Constructs a new {@code InvalidCoordinatesException} with {@code null} as its detail message.
* The cause is not initialized, and may subsequently be initialized by a call to {@link #initCause}. * The cause is not initialized, and may subsequently be initialized by a call to {@link #initCause}.

View File

@@ -1,7 +1,3 @@
//Matrix/src/main/java/com/mattrixwv/exceptions/InvalidGeometryException.java
//Mattrixwv
// Created: 02-01-22
//Modified: 08-08-24
package com.mattrixwv.matrix.exceptions; package com.mattrixwv.matrix.exceptions;
@@ -11,12 +7,6 @@ package com.mattrixwv.matrix.exceptions;
* @author Mattrixwv * @author Mattrixwv
*/ */
public class InvalidGeometryException extends RuntimeException{ public class InvalidGeometryException extends RuntimeException{
/**
* Serialization identifier for this class.
*/
public static final long serialVersionUID = 1;
/** /**
* Constructs a new {@code InvalidGeometryException} with {@code null} as its detail message. * Constructs a new {@code InvalidGeometryException} with {@code null} as its detail message.
* The cause is not initialized and may subsequently be initialized by a call to {@link #initCause}. * The cause is not initialized and may subsequently be initialized by a call to {@link #initCause}.

View File

@@ -1,7 +1,3 @@
//Matrix/src/main/java/com/mattrixwv/exceptions/InvalidRowSizeException.java
//Mattrixwv
// Created: 02-01-22
//Modified: 08-08-24
package com.mattrixwv.matrix.exceptions; package com.mattrixwv.matrix.exceptions;
@@ -9,12 +5,6 @@ package com.mattrixwv.matrix.exceptions;
* Exception thrown to indicate that the size of a row is invalid for a given matrix. * Exception thrown to indicate that the size of a row is invalid for a given matrix.
*/ */
public class InvalidRowSizeException extends RuntimeException{ public class InvalidRowSizeException extends RuntimeException{
/**
* Serialization identifier for this class.
*/
public static final long serialVersionUID = 1;
/** /**
* Constructs a new {@code InvalidRowSizeException} with {@code null} as its detail message. * Constructs a new {@code InvalidRowSizeException} with {@code null} as its detail message.
* The cause is not initialized and may subsequently be initialized by a call to {@link #initCause}. * The cause is not initialized and may subsequently be initialized by a call to {@link #initCause}.

View File

@@ -1,7 +1,3 @@
//Matrix/src/main/java/com/mattrixwv/matrix/exceptions/InvalidScalarException.java
//Mattrixwv
// Created: 02-07-22
//Modified: 08-08-24
package com.mattrixwv.matrix.exceptions; package com.mattrixwv.matrix.exceptions;
@@ -9,12 +5,6 @@ package com.mattrixwv.matrix.exceptions;
* Exception thrown to indicate that a scalar value passed to a matrix is invalid * Exception thrown to indicate that a scalar value passed to a matrix is invalid
*/ */
public class InvalidScalarException extends RuntimeException{ public class InvalidScalarException extends RuntimeException{
/**
* Serialization identifier for this class.
*/
public static final long serialVersionUID = 1;
/** /**
* Constructs a new {@code InvalidScalarException} with {@code null} as its detail message. * Constructs a new {@code InvalidScalarException} with {@code null} as its detail message.
* The cause is not initialized and may subsequently be initialized by a call to {@link #initCause}. * The cause is not initialized and may subsequently be initialized by a call to {@link #initCause}.

View File

@@ -1,7 +1,3 @@
//Matrix/src/main/java/com/mattrixwv/exceptions/NullMatrixException.java
//Mattrixwv
// Created: 06-30-22
//Modified: 08-08-24
package com.mattrixwv.matrix.exceptions; package com.mattrixwv.matrix.exceptions;
@@ -9,12 +5,6 @@ package com.mattrixwv.matrix.exceptions;
* Exception thrown to indicate that a null matrix has been illegally passed to a method * Exception thrown to indicate that a null matrix has been illegally passed to a method
*/ */
public class NullMatrixException extends RuntimeException{ public class NullMatrixException extends RuntimeException{
/**
* Serialization identifier for this class.
*/
public static final long serialVersionUID = 1;
/** /**
* Constructs a new {@code NullMatrixException} with {@code null} as its detail message. * Constructs a new {@code NullMatrixException} with {@code null} as its detail message.
* The cause is not initialized and may subsequently be initialized by a call to {@link #initCause}. * The cause is not initialized and may subsequently be initialized by a call to {@link #initCause}.