From 6d8d32aab53c10b5752120e04185e4b3b689178c Mon Sep 17 00:00:00 2001 From: Yong Zhang Date: Thu, 14 Jan 2021 12:24:56 +0800 Subject: [PATCH] Fix the set-project-version scripts (#9198) --- *Motivation* We introduce a new way to handle the proto and remove the 'protobuf-shaded/pom.xml' in the PR #9046. We need to remove the set version in the scripts. --- src/set-project-version.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/set-project-version.sh b/src/set-project-version.sh index 0dfdae6a03488..9bc9d14d16aaa 100755 --- a/src/set-project-version.sh +++ b/src/set-project-version.sh @@ -38,7 +38,5 @@ OLD_VERSION=`python ${ROOT_DIR}/src/get-project-version.py` mvn versions:set -DnewVersion=$NEW_VERSION mvn versions:set -DnewVersion=$NEW_VERSION -pl buildtools mvn versions:set -DnewVersion=$NEW_VERSION -pl pulsar-sql/presto-distribution -# install the new version of root pom local, so `update-parent` can update the right parent version -sed -i -e "s/${OLD_VERSION}/${NEW_VERSION}/g" protobuf-shaded/pom.xml popd