1
1
Fork 0
mirror of https://github.com/tonydamage/nux-env.git synced 2025-12-11 13:24:28 +01:00

Added m2-clean-snapshots

Introduced fast snapshot cleanup from user specific m2 repository.
This commit is contained in:
Tony 'daMage' Tkáčik 2015-05-13 13:42:51 +02:00
parent a07b8a714f
commit ad56b16420

View file

@ -1,6 +1,7 @@
# Maven Aliases
alias mci="mvn clean install"
alias mvn-fastclean="find -name target -type d | xargs rm -rf"
alias m2-clean-snapshots="find ~/.m2/repository/ -name \"*-SNAPSHOT\" -type d | xargs -n10 rm -rf"
# GIT and GITK Aliases
alias gitk-all="(git branch -l) | sed "s/^*//" | xargs gitk"