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

View File

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