-
Notifications
You must be signed in to change notification settings - Fork 2
/
update_deps_versions.sh
executable file
·42 lines (26 loc) · 1.1 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
#!/bin/sh
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 parent 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_WEAVE=$3
updateParentVersion "$VERSION_TO_DEPS" pom.xml
propertiesDeps=("mule.app.plugins.maven.plugin.version")
updatePropertiesVersion "$VERSION_TO_DEPS" pom.xml propertiesDeps[@]