summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarsten Lund <lund@research.att.com>2017-02-24 00:10:24 +0000
committerCarsten Lund <lund@research.att.com>2017-02-24 00:10:24 +0000
commitc27b091032fcccb928887467ed711b036cc034bf (patch)
tree5c33b95da5efdfd6d196764bc79149bafa0b45cc
parent4a7bda71a2cbc6dc18c26149c2666cd6b9dc0df1 (diff)
Added some output to verify script
Change-Id: I60fa5e6fa761d220045c8f89cb6ff6414731918f Signed-off-by: Carsten Lund <lund@research.att.com>
-rw-r--r--jjb/include-update-pom-versions.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/jjb/include-update-pom-versions.sh b/jjb/include-update-pom-versions.sh
index 0e269a2af..db1dd26cc 100644
--- a/jjb/include-update-pom-versions.sh
+++ b/jjb/include-update-pom-versions.sh
@@ -12,15 +12,20 @@ source ./version.properties
VERSION=$release_version
+echo Changing POM version to $VERSION
+
## handle POM files with no parent
for file in $(find . -name pom.xml); do
if [ "$(grep -c '<parent>' $file)" == "0" ]; then
+ echo Updating version in $file to $VERSION
(
cd $(dirname $file)
${MVN} versions:set versions:commit \
-DnewVersion=$VERSION \
-DprocessDependencies=false
)
+ grep version $file
+ echo DONE $file
fi
done