Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save velmuruganvelayutham/8c325f4ac680d8eca629b0fd9af3f2ef to your computer and use it in GitHub Desktop.
Save velmuruganvelayutham/8c325f4ac680d8eca629b0fd9af3f2ef to your computer and use it in GitHub Desktop.
maven: Find corrupted jar files
run this in .m2 files
it lists all the corrupted jar files in the repository
find /home/me/.m2/repository/ -name "*jar" | xargs -L 1 zip -T | grep error | grep invalid
To resolve them , delete them first and re run the build or run
mvn -Dmaven.wagon.provider.http=httpclient clean install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment