com.stephenschafer.budget.web/build-war

8 lines
166 B
Text
Raw Normal View History

2025-07-13 09:38:54 -06:00
#!/bin/sh
if mvn -f pom.xml clean install > build-jar.log 2> build-jar.err.log; then
echo "success"
cp target/*.war /tmp
else
echo "failure"
exit 1
fi