|
123456789 |
- #!/bin/bash
- #
- # Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
- #
- THISDIR=$(cd $(dirname ${0}) && pwd)
- WORKSPACE_DIR=$(cd ${THISDIR}/../.. && pwd)
- WORKSPACE_NAME=$(basename ${WORKSPACE_DIR})
-
- /usr/bin/mvn -Dstyle.color=never -Dmaven.repo.local=/var/lib/jenkins/.m2_${WORKSPACE_NAME}/repository "${@}"
|