| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
There was a problem hiding this comment.
This pull request updates the check_existing_release_versions.sh script to skip POM files that lack explicit group_id or version declarations, treating them as inheriting coordinates rather than errors. Feedback suggests reordering the validation logic to ensure the mandatory artifact_id is checked first, preventing the script from incorrectly skipping malformed files, and improving the formatting of error messages.
Sorry, something went wrong.
| exit 1 | ||
| fi | ||
| if [ -z "${group_id}" ] || [ -z "${version}" ]; then | ||
| echo "Skipping file without explicit coordinates (likely inherits): $pom_file" |
There was a problem hiding this comment.
This will skip the case where group ID is inherited and version is wrong.
Sorry, something went wrong.
There was a problem hiding this comment.
This will skip the case where group ID is inherited and version is wrong.
This is a corner case not worth implementing artifact inheritance resolution.
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Fixes #12840