Check MAVEN_PARAMS for -f flag in metadata fetch
[releng/global-jjb.git] / shell / maven-fetch-metadata.sh
index 26b2c96..4696451 100644 (file)
 
 # Uses wget to fetch a project's maven-metadata.xml files from a Maven repository.
 
+# Check for "-f" maven param, indicating a change in pom location.
+pom_path="pom.xml"
+file_path=$(echo $MAVEN_PARAMS | grep -E "\-f \S+" | awk '{ print $2 }')
+if [ ! -z $file_path ]; then
+    pom_path="$file_path/pom.xml"
+fi
+
 # Ensure we fail the job if any steps fail.
 set -xeu -o pipefail
 
@@ -20,7 +27,7 @@ project=$(xmlstarlet sel \
       -v "/x:project/x:groupId" \
     --elif "/x:project/x:parent/x:groupId" \
       -v "/x:project/x:parent/x:groupId" \
-    --else -o "" pom.xml)
+    --else -o "" $pom_path)
 project_path="${project//.//}"
 
 mkdir -p "$WORKSPACE/m2repo/$project_path"