You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# example value of module is "./java-accessapproval"
18
+
if [[ "${module}"=*google-cloud-gapic-bom ]] || [[ "${module}"=*CoverageAggregator ]];then
19
+
continue
20
+
fi
21
+
echo"Processing module $module"
22
+
pushd$module
23
+
# Search for <parent> tag in module pom and replace the next three lines -- groupId, artifcatId, and version
24
+
sed -i.bak -e "/<parent>/{N;s|<groupId>.*</groupId>|<groupId>${parent_group_id}</groupId>|;N;s|<artifactId>.*</artifactId>|<artifactId>${parent_artifact_id}</artifactId>|;N;s|<version>.*</version>|<version>${parent_version}</version>|}" pom.xml
0 commit comments