8 lines
No EOL
166 B
Bash
Executable file
8 lines
No EOL
166 B
Bash
Executable file
#!/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 |