Files
FileJet/build.sh
rattatwinko dd757452b1
All checks were successful
Maven Build / build (push) Successful in 10m12s
refactor, removed a uncessary throw.
2025-08-06 18:03:21 +02:00

11 lines
279 B
Bash
Executable File

#!/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."