2018-08-03 15:18:49 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
set -e
|
|
|
|
|
|
2018-11-09 11:20:58 +01:00
|
|
|
source $(dirname $0)/common.sh
|
2018-08-03 15:18:49 -07:00
|
|
|
repository=$(pwd)/distribution-repository
|
|
|
|
|
|
|
|
|
|
pushd git-repo > /dev/null
|
|
|
|
|
./mvnw clean deploy -U -Pfull -DaltDeploymentRepository=distribution::default::file://${repository}
|
|
|
|
|
popd > /dev/null
|