forked from apache/helix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbump-up.command
executable file
·211 lines (183 loc) · 7.54 KB
/
bump-up.command
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
#!/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.
#
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=`echo $version | sed -e "s/${minor_version}/${new_minor_version}/g"`
new_version="$major_version.$submajor_version.$new_minor_version"
fi
echo "bump up: $version -> $new_version"
#: <<'END'
echo "bump up pom.xml"
sed -i "s/${version}/${new_version}/g" pom.xml
# git diff pom.xml
grep -C 1 "$new_version" pom.xml
echo "bump up metrics-common/pom.xml"
sed -i "s/${version}/${new_version}/g" metrics-common/pom.xml
grep -C 1 "$new_version" metrics-common/pom.xml
# git diff metrics-common/pom.xml
ivy_file="metrics-common-"$version".ivy"
new_ivy_file="metrics-common-"$new_version".ivy"
# echo "$ivy_file"
if [ -f metrics-common/$ivy_file ]; then
echo "bump up metrics-common/$ivy_file"
git mv "metrics-common/$ivy_file" "metrics-common/$new_ivy_file"
sed -i "s/${version}/${new_version}/g" "metrics-common/$new_ivy_file"
grep -C 1 "$new_version" "metrics-common/$new_ivy_file"
else
echo "metrics-common/$ivy_file not exist"
fi
echo "bump up metadata-store-directory-common/pom.xml"
sed -i "s/${version}/${new_version}/g" metadata-store-directory-common/pom.xml
grep -C 1 "$new_version" metadata-store-directory-common/pom.xml
# git diff metadata-store-directory-common/pom.xml
ivy_file="metadata-store-directory-common-"$version".ivy"
new_ivy_file="metadata-store-directory-common-"$new_version".ivy"
# echo "$ivy_file"
if [ -f metadata-store-directory-common/$ivy_file ]; then
echo "bump up metadata-store-directory-common/$ivy_file"
git mv "metadata-store-directory-common/$ivy_file" "metadata-store-directory-common/$new_ivy_file"
sed -i "s/${version}/${new_version}/g" "metadata-store-directory-common/$new_ivy_file"
grep -C 1 "$new_version" "metadata-store-directory-common/$new_ivy_file"
else
echo "metadata-store-directory-common/$ivy_file not exist"
fi
echo "bump up zookeeper-api/pom.xml"
sed -i "s/${version}/${new_version}/g" zookeeper-api/pom.xml
grep -C 1 "$new_version" zookeeper-api/pom.xml
# git diff zookeeper-api/pom.xml
ivy_file="zookeeper-api-"$version".ivy"
new_ivy_file="zookeeper-api-"$new_version".ivy"
# echo "$ivy_file"
if [ -f zookeeper-api/$ivy_file ]; then
echo "bump up zookeeper-api/$ivy_file"
git mv "zookeeper-api/$ivy_file" "zookeeper-api/$new_ivy_file"
sed -i "s/${version}/${new_version}/g" "zookeeper-api/$new_ivy_file"
grep -C 1 "$new_version" "zookeeper-api/$new_ivy_file"
else
echo "zookeeper-api/$ivy_file not exist"
fi
echo "bump up helix-common/pom.xml"
sed -i "s/${version}/${new_version}/g" helix-common/pom.xml
grep -C 1 "$new_version" helix-common/pom.xml
# git diff helix-common/pom.xml
ivy_file="helix-common-"$version".ivy"
new_ivy_file="helix-common-"$new_version".ivy"
# echo "$ivy_file"
if [ -f helix-common/$ivy_file ]; then
echo "bump up helix-common/$ivy_file"
git mv "helix-common/$ivy_file" "helix-common/$new_ivy_file"
sed -i "s/${version}/${new_version}/g" "helix-common/$new_ivy_file"
grep -C 1 "$new_version" "helix-common/$new_ivy_file"
else
echo "helix-common/$ivy_file not exist"
fi
echo "bump up helix-core/pom.xml"
sed -i "s/${version}/${new_version}/g" helix-core/pom.xml
grep -C 1 "$new_version" helix-core/pom.xml
# git diff helix-core/pom.xml
ivy_file="helix-core-"$version".ivy"
new_ivy_file="helix-core-"$new_version".ivy"
# echo "$ivy_file"
if [ -f helix-core/$ivy_file ]; then
echo "bump up helix-core/$ivy_file"
git mv "helix-core/$ivy_file" "helix-core/$new_ivy_file"
sed -i "s/${version}/${new_version}/g" "helix-core/$new_ivy_file"
grep -C 1 "$new_version" "helix-core/$new_ivy_file"
else
echo "helix-core/$ivy_file not exist"
fi
echo "bump up helix-admin-webapp/pom.xml"
sed -i "s/${version}/${new_version}/g" helix-admin-webapp/pom.xml
grep -C 1 "$new_version" helix-admin-webapp/pom.xml
# git diff helix-admin-webapp/pom.xml
ivy_file="helix-admin-webapp-"$version".ivy"
new_ivy_file="helix-admin-webapp-"$new_version".ivy"
# echo "$ivy_file"
if [ -f helix-admin-webapp/$ivy_file ]; then
echo "bump up helix-admin-webapp/$ivy_file"
git mv "helix-admin-webapp/$ivy_file" "helix-admin-webapp/$new_ivy_file"
sed -i "s/${version}/${new_version}/g" "helix-admin-webapp/$new_ivy_file"
grep -C 1 "$new_version" "helix-admin-webapp/$new_ivy_file"
else
echo "helix-admin-webapp/$ivy_file not exist"
fi
echo "bump up helix-rest/pom.xml"
sed -i "s/${version}/${new_version}/g" helix-rest/pom.xml
grep -C 1 "$new_version" helix-rest/pom.xml
# git diff helix-rest/pom.xml
ivy_file="helix-rest-"$version".ivy"
new_ivy_file="helix-rest-"$new_version".ivy"
# echo "$ivy_file"
if [ -f helix-rest/$ivy_file ]; then
echo "bump up helix-rest/$ivy_file"
git mv "helix-rest/$ivy_file" "helix-rest/$new_ivy_file"
sed -i "s/${version}/${new_version}/g" "helix-rest/$new_ivy_file"
grep -C 1 "$new_version" "helix-rest/$new_ivy_file"
else
echo "helix-rest/$ivy_file not exist"
fi
echo "bump up helix-lock/pom.xml"
sed -i "s/${version}/${new_version}/g" helix-lock/pom.xml
grep -C 1 "$new_version" helix-lock/pom.xml
# git diff helix-lock/pom.xml
ivy_file="helix-lock-"$version".ivy"
new_ivy_file="helix-lock-"$new_version".ivy"
# echo "$ivy_file"
if [ -f helix-lock/$ivy_file ]; then
echo "bump up helix-lock/$ivy_file"
git mv "helix-lock/$ivy_file" "helix-lock/$new_ivy_file"
sed -i "s/${version}/${new_version}/g" "helix-lock/$new_ivy_file"
grep -C 1 "$new_version" "helix-lock/$new_ivy_file"
else
echo "helix-lock/$ivy_file not exist"
fi
echo "bump up helix-agent/pom.xml"
sed -i "s/${version}/${new_version}/g" helix-agent/pom.xml
grep -C 1 "$new_version" helix-agent/pom.xml
# git diff helix-agent/pom.xml
ivy_file="helix-agent-"$version".ivy"
new_ivy_file="helix-agent-"$new_version".ivy"
# echo "$ivy_file"
if [ -f helix-agent/$ivy_file ]; then
echo "bump up helix-agent/$ivy_file"
git mv "helix-agent/$ivy_file" "helix-agent/$new_ivy_file"
sed -i "s/${version}/${new_version}/g" "helix-agent/$new_ivy_file"
grep -C 1 "$new_version" "helix-agent/$new_ivy_file"
else
echo "helix-agent/$ivy_file not exist"
fi
for POM in helix-agent/pom.xml 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
echo "bump up $POM"
sed -i "s/${version}/${new_version}/g" $POM
grep -C 1 "$new_version" $POM
done
echo "bump up helix-front/pom.xml"
sed -i "s/${version}/${new_version}/g" helix-front/pom.xml
grep -C 1 "$new_version" helix-front/pom.xml
#END