-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_deps_versions.sh
executable file
·46 lines (31 loc) · 1.33 KB
/
update_deps_versions.sh
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
#!/bin/sh
set -o nounset
updatePropertiesVersion() {
VERSION_TO_PROPERTY="$1"
POM_PROPERTY_PATH="$2"
# PROPERTIES argument should be passed as a literal "arrayName[@]" without $ because here using the ! it is double expanded
# to obtiain the values and declare again the array.
PROPERTIES=("${!3}")
echo "Updating deps in pom: $POM_PROPERTY_PATH"
for PROPERTY_NAME in "${PROPERTIES[@]}"
do
perl -0777 -i -pe "s/(<properties>.*<$PROPERTY_NAME)(.*)(\/$PROPERTY_NAME>.*<\/properties>)/\${1}>$VERSION_TO_PROPERTY<\${3}/s" "$POM_PROPERTY_PATH"
echo "- Updating property $PROPERTY_NAME version to $VERSION_TO_PROPERTY"
done
}
updateParentVersion() {
VERSION_TO="$1"
POM_PROPERTY_PATH="$2"
echo "Updating version to $VERSION_TO..."
perl -0777 -i -pe "s/(<parent>.*<version)(.*)(\/version>.*<\/parent>)/\${1}>$VERSION_TO<\${3}/s" "$POM_PROPERTY_PATH"
}
VERSION_TO_DEPS=$1
VERSION_TO_MULE=$2
VERSION_TO_CONNECTORS=$3
# Properties with Deps Version (1.0.x) in the root pom.xml
propertiesDeps=("muleEmbeddedApiVersion")
updatePropertiesVersion "$VERSION_TO_DEPS" pom.xml propertiesDeps[@]
propertiesConnectors=("muleHttpConnectorTestVersion"
"muleFileConnectorTestVersion")
updatePropertiesVersion "$VERSION_TO_CONNECTORS" pom.xml propertiesConnectors[@]
updateParentVersion "$VERSION_TO_MULE" pom.xml