Skip to content

Commit 28c6886

Browse files
committed
updates bumpver_isis.sh to use mvn versions:set rather than sed
1 parent 0470ee8 commit 28c6886

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bumpver_isis.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ fi
77

88
# edit parent pom.xml
99
echo "editing parent pom.xml"
10-
cat pom.xml | sed "s/<isis.version>.*</<isis.version>$VERSION</" > pom.xml.$$.sed
11-
mv pom.xml.$$.sed pom.xml
10+
echo mvn versions:update-parent "-DparentVersion=[${VERSION}]"
11+
mvn versions:update-parent "-DparentVersion=[${VERSION}]"
1212

1313
echo "Committing changes"
14-
git commit -am "bumping isis.version to $VERSION"
14+
git commit -am "bumping incode-parent (isis) version to $VERSION"
1515

0 commit comments

Comments
 (0)