Updated libraries

This commit is contained in:
2022-12-23 19:42:35 -05:00
parent 59b74488d5
commit bd086a2ab3
2 changed files with 9 additions and 9 deletions

16
pom.xml
View File

@@ -6,7 +6,7 @@
<groupId>com.mattrixwv</groupId> <groupId>com.mattrixwv</groupId>
<artifactId>cipher-stream-java</artifactId> <artifactId>cipher-stream-java</artifactId>
<version>1.0.1</version> <version>1.1.0</version>
<name>CipherStreamJava</name> <name>CipherStreamJava</name>
<url>http://www.mattrixwv.com</url> <url>http://www.mattrixwv.com</url>
@@ -14,12 +14,12 @@
<properties> <properties>
<!--Compile--> <!--Compile-->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>18</maven.compiler.source> <maven.compiler.source>19</maven.compiler.source>
<maven.compiler.target>18</maven.compiler.target> <maven.compiler.target>19</maven.compiler.target>
<java.version>18</java.version> <java.version>19</java.version>
<!--Sonarqube--> <!--Sonarqube-->
<sonar.java.source>18</sonar.java.source> <sonar.java.source>19</sonar.java.source>
<sonar.dependencyCheck.jsonReportPath>target/dependency-check-report.json</sonar.dependencyCheck.jsonReportPath> <sonar.dependencyCheck.jsonReportPath>target/dependency-check-report.json</sonar.dependencyCheck.jsonReportPath>
<sonar.dependencyCheck.htmlReportPath>target/dependency-check-report.html</sonar.dependencyCheck.htmlReportPath> <sonar.dependencyCheck.htmlReportPath>target/dependency-check-report.html</sonar.dependencyCheck.htmlReportPath>
</properties> </properties>
@@ -28,7 +28,7 @@
<dependency> <dependency>
<groupId>mattrixwv</groupId> <groupId>mattrixwv</groupId>
<artifactId>myClasses</artifactId> <artifactId>myClasses</artifactId>
<version>1.0.1</version> <version>1.2.0</version>
</dependency> </dependency>
<dependency> <dependency>
@@ -40,14 +40,14 @@
<dependency> <dependency>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId> <artifactId>slf4j-api</artifactId>
<version>1.7.36</version> <version>2.0.6</version>
</dependency> </dependency>
<!--Test--> <!--Test-->
<dependency> <dependency>
<groupId>org.junit.jupiter</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId> <artifactId>junit-jupiter-api</artifactId>
<version>5.9.0</version> <version>5.9.1</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@@ -11,7 +11,7 @@ import org.slf4j.LoggerFactory;
import com.mattrixwv.cipherstream.exceptions.InvalidInputException; import com.mattrixwv.cipherstream.exceptions.InvalidInputException;
import com.mattrixwv.cipherstream.exceptions.InvalidKeywordException; import com.mattrixwv.cipherstream.exceptions.InvalidKeywordException;
import mattrixwv.NumberAlgorithms; import com.mattrixwv.NumberAlgorithms;
public class Affine{ public class Affine{