You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
Thanks for the tip! I had no idea I should not be cleaning and installing so often. It makes sense when you put it like that.
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 yourtarget
folder. Just useverify
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.
The text was updated successfully, but these errors were encountered: