mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-17 20:50:44 +00:00
23 lines
688 B
Bash
Executable File
23 lines
688 B
Bash
Executable File
#!/bin/bash
|
|
|
|
############################################################################
|
|
## reset-snapshot-deps.sh
|
|
## Reset the version of all qqq deps in a given pom to the current snapshot.
|
|
############################################################################
|
|
|
|
if [ ! -e pom.xml ]; then
|
|
echo "Error: $0 Must be ran in a directory with a pom.xml"
|
|
exit 1;
|
|
fi
|
|
|
|
CURRENT_VERSION="$(cat $QQQ_DEV_TOOLS_DIR/CURRENT-SNAPSHOT-VERSION)"
|
|
MODULE_LIST_FILE=$QQQ_DEV_TOOLS_DIR/MODULE_LIST
|
|
|
|
for artifact in $(cat $MODULE_LIST_FILE | grep -v qqq-frontend-material-dashboard); do
|
|
update-dep.sh $artifact ${CURRENT_VERSION}-SNAPSHOT -q
|
|
done
|
|
|
|
echo
|
|
echo git diff pom.xml
|
|
git diff pom.xml
|