Saturday, September 09, 2017

Remove lastUpdate files in local Maven repository

One may use the following shell command to remove lastUpdate files in local Maven repository


for f in $(find . -name *lastUpdate*); do rm -f $f; done

No comments: