refactor, removed a uncessary throw.
All checks were successful
Maven Build / build (push) Successful in 10m12s

This commit is contained in:
2025-08-06 18:03:21 +02:00
parent bb812914b8
commit dd757452b1
3 changed files with 66 additions and 1 deletions

10
build.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
# Direct build script for Maven project
echo "Current directory: $(pwd)"
echo "Building project with Maven..."
# Run Maven build using the exact pom.xml location
mvn clean package -f "$(pwd)/pom.xml"
echo "Build complete. JAR file should be in target/ directory."