mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 05:01:07 +00:00
Initial import from qqq-dev-tools standalone repo
This commit is contained in:
13
qqq-dev-tools/bin/reset-snapshot-deps.sh
Executable file
13
qqq-dev-tools/bin/reset-snapshot-deps.sh
Executable file
@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
############################################################################
|
||||
## reset-snapshot-deps.sh
|
||||
## Reset the version of all qqq deps in a given pom to the current snapshot.
|
||||
############################################################################
|
||||
|
||||
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); do
|
||||
update-dep.sh $artifact ${CURRENT_VERSION}-SNAPSHOT
|
||||
done
|
Reference in New Issue
Block a user