As Robert Scholte keeps repeating, using clean install is a bad habit from the past ;-)
clean is not required any more by almost all plugins, as they support incremental builds. You rob them from their chance to optimize by blindly forcing them to redo everything.
install is also not necessary if you only need a verified artifact in your target folder. Just use verify and skip the installation to your local .m2 repository.
This would be a minimal change, but the speed improvement can be small but noticeable when doing it several times a minute.
As Robert Scholte keeps repeating, using
clean installis a bad habit from the past ;-)cleanis not required any more by almost all plugins, as they support incremental builds. You rob them from their chance to optimize by blindly forcing them to redo everything.installis also not necessary if you only need a verified artifact in yourtargetfolder. Just useverifyand skip the installation to your local.m2repository.This would be a minimal change, but the speed improvement can be small but noticeable when doing it several times a minute.