blob: 89feb3ef3ba5c1f6904ccd95cce8c94b9271db7f [file] [log] [blame]
#!/bin/sh
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
MODULES=("metrics-common" "metadata-store-directory-common" "zookeeper-api" "helix-common" "helix-core" \
"helix-admin-webapp" "helix-front" "helix-rest" "helix-lock" "helix-view-aggregator" "helix-agent")
update_pom_version() {
pom=$1
echo "bump up $pom"
sed -i'' -e "s/${version}/${new_version}/g" $pom
if ! grep -C 1 "$new_version" $pom; then
echo "Failed to update new version $new_version in $pom"
exit 1
fi
}
update_ivy() {
module=$1
ivy_file="$module-$version.ivy"
new_ivy_file="$module-$new_version.ivy"
if [ -f $module/$ivy_file ]; then
echo "bump up $module/$ivy_file"
git mv "$module/$ivy_file" "$module/$new_ivy_file"
sed -i'' -e "s/${version}/${new_version}/g" "$module/$new_ivy_file"
if ! grep -C 1 "$new_version" "$module/$new_ivy_file"; then
echo "Failed to update new version $new_version in $module/$new_ivy_file"
exit 1
fi
else
echo "$module/$ivy_file not exist"
fi
}
echo There are $# arguments to $0: $*
if [ "$#" -eq 2 ]; then
version=$1
new_version=$2
else
version=`grep -A 1 "<artifactId>helix</artifactId>" pom.xml | grep "<version>" | awk 'BEGIN {FS="[<,>]"};{print $3}'`
minor_version=`echo $version | cut -d'.' -f3`
major_version=`echo $version | cut -d'.' -f1` # should be 0
submajor_version=`echo $version | cut -d'.' -f2`
new_minor_version=`expr $minor_version + 1`
new_version="$major_version.$submajor_version.$new_minor_version"
fi
echo "bump up: $version -> $new_version"
update_pom_version "pom.xml"
for module in "${MODULES[@]}"; do
update_pom_version "$module/pom.xml"
update_ivy $module
done
for pom in recipes/task-execution/pom.xml recipes/pom.xml \
recipes/distributed-lock-manager/pom.xml recipes/rsync-replicated-file-system/pom.xml \
recipes/rabbitmq-consumer-group/pom.xml recipes/service-discovery/pom.xml; do
update_pom_version $pom
done
#END