com.stephenschafer.budget/build-jar
2025-07-13 08:15:02 -06:00

7 lines
No EOL
145 B
Bash
Executable file

#!/bin/sh
if mvn -f pom-jar.xml clean install > build-jar.log 2> build-jar.err.log; then
echo "success"
else
echo "failure"
exit 1
fi