7 lines
145 B
Text
7 lines
145 B
Text
|
|
#!/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
|