24883 transform options test

This commit is contained in:
bsayan2
2025-06-04 20:39:36 +05:30
parent db330e28f5
commit 1f2a9a854b
3 changed files with 17 additions and 1 deletions

View File

@@ -184,4 +184,15 @@ function retieveLatestTag() {
rm -rf "${LOCAL_PATH}"
}
function buildSnapShot() {
local GIT_REPO="${1}"
local BRANCH="${2}"
cloneRepo "${GIT_REPO}" "${BRANCH}"
pushd "$(dirname "${BASH_SOURCE[0]}")/../../../"
cd "$(basename "${GIT_REPO%.git}")"
mvn -B -V -q clean install -DskipTests -Dmaven.javadoc.skip=true -Plocal
popd
}
set -vx