Skip to content

Instantly share code, notes, and snippets.

@RaniAgus
Created November 15, 2025 04:25
Show Gist options
  • Select an option

  • Save RaniAgus/da7f6443625f5a7d32472af0fec8ceeb to your computer and use it in GitHub Desktop.

Select an option

Save RaniAgus/da7f6443625f5a7d32472af0fec8ceeb to your computer and use it in GitHub Desktop.
Delete local maven dependency version
PACKAGE=${1:?}
VERSION=${2:?}
rm -rfv "~/.m2/repository/${PACKAGE}/${VERSION}"
rm -v "~/.m2/repository/${PACKAGE}/maven-metadata-local.xml"
# Example:
# rm -rfv ~/.m2/repository/org/mapstruct/*/1.7.0-SNAPSHOT
# rm -v ~/.m2/repository/org/mapstruct/*/maven-metadata-local.xml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment