Shell 快速删除 Maven 快照

# 删除所有快照
find /Applications/apache-maven-repo -type d -name '*-SNAPSHOT' -print -exec rm -r {} +

# 删除所有 alibaba 的依赖
find /Applications/apache-maven-repo -type d -name 'alibaba' -print -exec rm -r {} +

# 删除所有 baomidou 的依赖
find /Applications/apache-maven-repo -type d -name 'baomidou' -print -exec rm -r {} +

# 删除所有 mybatis 的依赖
find /Applications/apache-maven-repo -type d -name 'mybatis' -print -exec rm -r {} +