19 lines
331 B
Bash
Executable File
19 lines
331 B
Bash
Executable File
#!/bin/bash -e
|
|
# OTHER REQUIRED ENVIRONMENT VARIABLES:
|
|
# REVISION = <revision>
|
|
|
|
# Check variables correctness
|
|
if [ -z "${REVISION}" ]; then
|
|
echo "Missing parameter: REVISION"
|
|
exit 1
|
|
fi
|
|
|
|
source ./setup-variables.sh
|
|
|
|
cd ../../generated
|
|
|
|
mvn -B -DrevisionNumber="${REVISION}" -DrevisionSuffix="" clean deploy
|
|
|
|
echo "Done."
|
|
exit 0
|