Created
November 15, 2025 04:25
-
-
Save RaniAgus/da7f6443625f5a7d32472af0fec8ceeb to your computer and use it in GitHub Desktop.
Delete local maven dependency version
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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