Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<groupId>org.pwss</groupId>
<artifactId>integrity_hash</artifactId>
<packaging>jar</packaging>
<version>1.2</version>
<version>1.2.1</version>
<description>A GUI application for file integrity checking</description>

<!-- Licenses -->
Expand Down Expand Up @@ -71,7 +71,7 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.21</version>
<version>1.5.23</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
Expand All @@ -94,7 +94,7 @@
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf</artifactId>
<version>3.6.2</version>
<version>3.7</version>
</dependency>
</dependencies>

Expand All @@ -106,7 +106,7 @@
<!-- https://mvnrepository.com/artifact/org.codehaus.mojo/exec-maven-plugin -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.6.2</version>
<version>3.6.3</version>
<configuration>
<mainClass>${project.mainClass}</mainClass>
</configuration>
Expand All @@ -126,10 +126,10 @@

<!-- Plugin to create a JAR with dependencies -->
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-assembly-plugin/3.7.1 -->
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-assembly-plugin/3.8.0 -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.7.1</version>
<version>3.8.0</version>
<configuration>
<archive>
<manifest>
Expand Down
10 changes: 5 additions & 5 deletions start.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ if (-not (Test-Path -Path "..\artifacts")) {

if ($null -eq $portInUse) {
Write-Host "Nothing is running on port 15400. Starting the process..."
java -jar "..\File-Integrity-Scanner\File-Integrity-Scanner\target\File-Integrity-Scanner-1.8.1.jar" &
java -jar "..\File-Integrity-Scanner\File-Integrity-Scanner\target\File-Integrity-Scanner-1.8.3.jar" &
Write-Host "File-Integrity-Scanner started."
cp .\target\integrity_hash-1.2-jar-with-dependencies.jar ..\artifacts
java -jar ..\artifacts\integrity_hash-1.2-jar-with-dependencies.jar
cp .\target\integrity_hash-1.2.1-jar-with-dependencies.jar ..\artifacts
java -jar ..\artifacts\integrity_hash-1.2.1-jar-with-dependencies.jar
exit
} else {
Write-Host "File-Integrity-Scanner is already running on port 15400."
cp .\target\integrity_hash-1.2-jar-with-dependencies.jar ..\artifacts
java -jar ..\artifacts\integrity_hash-1.2-jar-with-dependencies.jar
cp .\target\integrity_hash-1.2.1-jar-with-dependencies.jar ..\artifacts
java -jar ..\artifacts\integrity_hash-1.2.1-jar-with-dependencies.jar
exit
}