Files
MOTD/build.sh
rattatwinko bb558bab48
Some checks failed
Maven Build / build (push) Failing after 10m31s
test 5
now with a building script
2025-05-10 15:43:08 +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."