Skip to content

Instantly share code, notes, and snippets.

@jashaj
Created July 26, 2018 10:40
Show Gist options
  • Select an option

  • Save jashaj/f3722cf1e0a51a156a3fe1cc6a9a2525 to your computer and use it in GitHub Desktop.

Select an option

Save jashaj/f3722cf1e0a51a156a3fe1cc6a9a2525 to your computer and use it in GitHub Desktop.
Delete snapshots in local maven repo
#! /bin/sh
find ~/.m2/repository -name "*-SNAPSHOT" -type d -print -exec rm -r "{}" \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment